Typecho实现页面加载时间
2024-07-11 · 字数:1497 · Typecho · 暂无标签
大家可能注意到MioMoe主题底部和HTML注释中有一个页面加载时间:
实现功能
添加代码
在主题文件functions.php文件中添加代码:
/**
* 加载时间
* Blog.MioMoe.Cn
*/
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;
}
实现引用
选一个适合的地方引入代码
页面加载时间
如果是注释的方式就使用
comment
共有 0 条评论