Typecho添加网站加载时间

在主题下的 functions.php 中加入以下代码:

/**
 * 加载时间
 * @return bool
 */
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;
}

然后在要显示的地方(一般是在网站底部主题foot.php文件)调用即可:

加载耗时:<?php echo timer_stop();?>

转载自:https://www.moeelf.com/archives/9.html

Meteor

关注周围的人或事,体验人生历程

Comments : 6

  1. 965影视: www.965ys.net
    博主你好,友链考虑下不?

    1. @965影视

      不好意思,电影站暂时不在考虑范围,感谢来访

  2. 悦有智:www.yueuk.com
    博主你好,友链考虑下不。

    1. @悦有智

      贵站友链已添加

  3. DeeTeam:https://deeteam.cn/
    博主你好,希望考虑下友链,我这边已经加上了

    1. @迪提姆-DeeTeam

      已添加贵站

发表留言

人生在世,错别字在所难免,无需纠正。