可以使用以下的方法来判断页面的执行时间,精确到毫秒。
代码如下:
$pagestartime=microtime();
?>
<!--网页内容 start-->
网页内容
...
...
<!--网页内容 end-->
<?
//开始计算执行时间
//www.
$pageendtime = microtime();
$starttime = explode()(" ",$pagestartime);
$endtime = explode(" ",$pageendtime);
$totaltime = $endtime[0]-$starttime[0]+$endtime[1]-$starttime[1];
$timecost = sprintf()("%s",$totaltime);
echo "页面运行时间: $timecost 秒";
?>
定义了一个用来记录页面执行时间的类runtime,在需要展示页面执行时间的php代码中,只需要引入该类并用$runtime= new runtime;的方式进行实例化,然后分别在页面开始位置调用该类下的start()方法开始记录时间,在页面结束位置调用stop()方法结束记录,最后调用spent()方法输出,输出的时间为毫秒。
代码如下:
/**
* 页面执行时间
* Edit www.
*/
$runtime= new runtime;//实例化类
$runtime->start();//执行开始记录方法
$runtime->stop();//结束记录并输出
echo "<div >执行时间为: ".$runtime->spent()."毫秒 </div>";
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);
}
}
?>
代码如下:
<?php
/**
* php页面执行时间
* Edit www.
*/
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()." 毫秒";
?>