发布作者: 阿良
本文链接: https://icnal.com/3.html
作品采用: 《 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 》许可协议授权
判断当前页面加载是否快速,通常是直接在浏览器中访问网站,由自己的直观感受进行判断,而客观的方法则是计算具体的页面加载时间并显示出来。
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;
}
<p>页面加载:<?php echo timer_stop();?></p>
—— 评论区 ——