php记录页面执行时间代码

2016-01-19 0 962
php记录页面执行时间代码
<?php 
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<1000000; $i++)
{
    $a += $i;
}

//你的代码结束

$runtime->stop();
echo "页面执行时间: ".$runtime->spent()." 毫秒";
?>

遇见资源网 php php记录页面执行时间代码 http://www.ox520.com/8123.html

下一篇: PHPExcel代码
常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务