在Typecho博客下面插入页面加载时间,不需要什么插件,简单的几行代码就可以了。
我们将下面的代码插入到我们主题的functions.php
文件里面:
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();?>
这段代码添加到你想显示的位置就可以了。
出自:Unle'Shallow
原文链接:https://aduct.cn/archives/28.html
好熟悉的代码。2333
老哥稳,要才艺有才艺,要文艺有文艺。