定义了一个用来记录页面执行时间的类runtime,在需要展示页面执行时间的php代码中,只需要引入该类并用$runtime= new runtime;的方式进行实例化,然后分别在页面开始位置调用该类下的start()方法开始记录时间,在页面结束位置调用stop()方法结束记录,最后调用spent()方法输出,输出的时间为毫秒。
本文参考自如下的内容: 。
代码如下:
/**
* 页面执行时间
* Edit
*/
$runtime= new runtime;//实例化类
$runtime->start();//执行开始记录方法
$runtime->stop();//结束记录并输出
echo "
执行时间为: ".$runtime->spent()."毫秒
";
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);
}
}
?>
本文原始链接:
阅读(925) | 评论(0) | 转发(0) |