class runtime
{
public $StartTime = 0;
public $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);
}
}
microtime — 返回当前 Unix 时间戳和微秒数
mixed
microtime ([ bool
$get_as_float ] )
另一种方法:
另一种方法:
class bwruntime
{
var $timestart;
var $digits;
function bwruntime($digits = "")
{
$this->timestart = explode (' ', microtime());
$this->digits = $digits;
}
function totaltime()
{
$timefinish = explode (' ', microtime());
if($this->digits == ""){
$runtime_float = $timefinish[0] - $this->timestart[0];
}else{
$runtime_float = round(($timefinish[0] - $this->timestart[0]), $this->digits);
}
$runtime = ($timefinish[1] - $this->timestart[1]) + $runtime_float;
return $runtime;
}
}
本文介绍了一种使用PHP来测量代码执行时间的方法。通过定义runtime类并利用microtime函数获取当前Unix时间戳和微秒数,可以精确计算出代码段的执行时间。文中提供了两种不同的实现方式,一种直接通过类的方法获取时间差,另一种则通过类的构造函数初始化起始时间。

被折叠的 条评论
为什么被折叠?



