解析PHP計算頁面執(zhí)行時間的實現(xiàn)代碼
更新時間:2013年06月18日 15:33:57 作者:
本篇文章是對PHP計算頁面執(zhí)行時間的實現(xiàn)代碼進行了詳細的分析介紹,需要的朋友參考下
如下所示:
<?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 '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次執(zhí)行時間:', microtime(TRUE) - $this->microtime, '秒</div>';
else
echo '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次執(zhí)行時間:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒</div>';
}
}
復制代碼 代碼如下:
<?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 '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次執(zhí)行時間:', microtime(TRUE) - $this->microtime, '秒</div>';
else
echo '<div style="color:#fff;background:#000;position:absolute;top:0px;right:0px;padding:3px 6px;">本次執(zhí)行時間:', microtime(TRUE) - $_SERVER['REQUEST_TIME_FLOAT'], '秒</div>';
}
}
相關文章
Win2003下IIS+PHP+MySQL+Zend配置步驟詳解
Win2003下IIS+PHP+MySQL+Zend配置步驟詳解...2007-05-05