Typecho获取加载时间,PHP代码获取Typecho网站加载时间。
Typecho获取加载时间,PHP代码获取Typecho网站加载时间。
在 functions.php 中加入以下代码:
/**
* 加载时间
* @return bool
*/
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[0];
$timetotal = number_format( $timeend - $timestart, $precision );
$r = $timetotal < 1 ? $timetotal * 1000 . " ms" : $timetotal . " s";
if ( $display ) {
echo $r;
}
return $r;
}
然后,在模板中你需要显示的地方引用:
<?php echo timer_stop();?>
图片备份:
当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »