php如何计算某个程序执行的时间
2015年8月7日
没有评论
往往我们需要计算某个程序执行了多长时间,下面的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();
/*开始执行你的代码*/
/*你的代码执行结束*/
$runtime->stop();
echo '页面执行时间:'.$runtime->spent().'毫秒';
?>
近期评论