获取网站的加载时间

森特
森特 本破站站长
2021-12-29 / 0 评论 / 517 阅读/  正在检测是否收录...
温馨提示:
本文最后更新于2021年12月29日,已超过991天没有更新,若内容或图片失效,请留言反馈。

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

在要显示加载时间的位置添加调用代码:

<?php echo timer_stop();?>
3

打赏

海报

正在生成.....

评论 (0)

取消