自己寫了個計算頁面執行時間的腳本
執行時間會顯示在頁面右上角
優點是只要在開始的時候執行一下就可以了
代碼片段()[代碼] [PHP]代碼
<?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 >本次執行時間 microtime(TRUE) $this>microtime 秒</div>;
else
echo <div >本次執行時間 microtime(TRUE) $_SERVER[REQUEST_TIME_FLOAT] 秒</div>;
}
}
From:http://tw.wingwit.com/Article/program/PHP/201311/20806.html