版权属于:
忘心博客-网络资源分享,免费技术资源分享网站,网络研...
本文链接:
http://wxkj.xyz/archives/251.html (转载时请注明本文出处及文章链接)
作品采用:
给你的网站加一个显示加载时间;
我也不知道咋想的,就是感觉加上会更好;
代码放在主题文件
function.php中
[copy]
/**
* 加载时间
*/
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;
}
[/copy]
把下方的代码放在你喜欢的位置
你可以选择放在
此处内容作者设置了 回复 可见
吞吞吐吐
不错
不错