>  기사  >  백엔드 개발  >  PHP 计算页面执行时间的方法

PHP 计算页面执行时间的方法

WBOY
WBOY원래의
2016-06-20 13:02:44903검색

PHP 计算页面执行时间的方法

< ?php<br />class runtime<br />{ <br />    var $StartTime = 0; <br />    var $StopTime = 0; <br /> <br />    function get_microtime() <br />    { <br />        list($usec, $sec) = explode(' ', microtime()); <br />        return ((float)$usec + (float)$sec); <br />    } <br /> <br />    function start() <br />    { <br />        $this->StartTime = $this->get_microtime(); <br />    } <br /> <br />    function stop() <br />    { <br />        $this->StopTime = $this->get_microtime(); <br />    } <br /> <br />    function spent() <br />    { <br />        return round(($this->StopTime - $this->StartTime) * 1000, 1); <br />    } <br /> <br />}

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


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.