首頁 >php教程 >php手册 >解析PHP计算页面执行时间的实现代码

解析PHP计算页面执行时间的实现代码

WBOY
WBOY原創
2016-06-06 20:30:291040瀏覽

本篇文章是对PHP计算页面执行时间的实现代码进行了详细的分析介绍,需要的朋友参考下

如下所示:

复制代码 代码如下:


$t = new executeTime;
phpinfo();
class executeTime{
private $microtime;
public function __construct(){
$this->microtime = microtime(true);
}

public function getNow(){
$this->__dectruct();
}

public function __destruct(){
if (empty($_SERVER['REQUEST_TIME_FLOAT']))
echo '

本次执行时间:', microtime(TRUE) - $this->microtime, '秒
';
else
echo '
本次执行时间:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒
';
}
}
,美国空间,虚拟主机,香港服务器
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn