首页 > 后端开发 > php教程 > PHP计算页面程序执行时间实例代码_PHP教程

PHP计算页面程序执行时间实例代码_PHP教程

WBOY
发布: 2016-07-13 17:43:07
原创
830 人浏览过

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

//实例开始
$runtime= new runtime;
$runtime->start();
//你的代码开始
$a = 0;
for($i=0; $i{
        $a = $i;
}
//你的代码结束
$runtime->stop();
echo "页面执行时间: ".$runtime->spent()." 毫秒";
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478846.htmlTechArticle?php class runtime { var $StartTime = 0; var $StopTime = 0; function get_microtime() { list($usec, $sec) = explode( , microtime()); return ((float)$usec (float)$sec); } function sta...
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板