Typecho主题插件站
每一个作品都值得被记录

Typecho 实现显示页面加载时间

Typecho爱好者开发日志 • 2079次浏览 • 发布 2017-11-09 • 更新 2017-11-09
极致加速的V2Ray 助您畅享全球网络 & 搬瓦工VPS最新优惠码
function timer_start() {
global $timestart;
$mtime = explode( ' ', microtime() );
$timestart = $mtime[1] + $mtime[0];
return true;
}
timer_start();
function timer_stop( $display = 0, $precision = 3 ) {

global $timestart, $timeend;

$mtime = explode( ' ', microtime() );

$timeend = $mtime[1] + $mtime[

在需要的地方直接调用一下代码

<?php echo timer_stop(); ?>

本文检索关键词:typecho
厂商投放
添加新评论 »