T

Typecho 底部载入加载时间

肉松 笔记 2019-11-05

在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

PREV
Typecho 网站更换域名
NEXT
【Excel】Sumif函数的使用方法

评论(2)

发布评论
  1. 好熟悉的代码。2333

    1. 老哥稳,要才艺有才艺,要文艺有文艺。