php记录页面执行时间的代码一例

发布时间:2020-07-28编辑:脚本学堂
本篇文章介绍了,php用于记录页面执行时间的一段代码,自定义了一个简单的time类,然后在执行时调用,计算出代码的执行时间是,建议大家参考下。

定义了一个用来记录页面执行时间的类runtime,在需要展示页面执行时间的php代码中,只需要引入该类并用$runtime= new runtime;的方式进行实例化,然后分别在页面开始位置调用该类下的start()方法开始记录时间,在页面结束位置调用stop()方法结束记录,最后调用spent()方法输出,输出的时间为毫秒。

代码如下:

复制代码 代码示例:
<?php
/**
 * 页面执行时间
 * Edit www.jb200.com
*/
$runtime= new runtime;//实例化类
$runtime->start();//执行开始记录方法 
$runtime->stop();//结束记录并输出
echo "<div style='font-size:12px; color:#333;'>执行时间为: ".$runtime->spent()."毫秒 </div>";
class runtime{//记录页面执行时间的类
    var $StartTime = 0;
    var $StopTime = 0;
    function get_microtime(){
        list($usec, $sec) = explode(' ', microtime());
        return ((float)$usec + (float)$sec);
    }
    function start(){
        $this->StartTime = $this->get_microtime();
    }
    function stop(){
        $this->StopTime = $this->get_microtime();
    }
    function spent(){
        return round(($this->StopTime - $this->StartTime) * 1000, 1);
    }
}
?>