自己写了个计算页面执行时间的脚本
执行时间会显示在页面右上角
优点是只要在开始的时候执行一下就可以了
/**
* PHP 计算页面执行时间
*
* @param
* @arrange 网: www.jb51.cc
**/
$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 '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次执行时间:',microtime(TRUE) - $this->microtime,'秒</div>';
else
echo '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次执行时间:',microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'],'秒</div>';
}
}
/*** 来自编程之家 jb51.cc(jb51.cc) ***/