Typecho 给底部添加当前页面加载时间

发布时间:2021-12-12

在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;
}

在footer.php底部合适的位置添加

<?php echo timer_stop();?>

打赏


哇 你要支持我吗?太慷慨了!谢谢
上一篇
下一篇