複製程式碼 程式碼如下:
//date:2011-08-05
class RunTime//頁面執行時間類別
{
private $start /頁面結束執行時間
private $spendtime;//頁面執行花費時間
function getmicrotime()//取得傳回目前微秒數的浮點數
{
list($usec,$sec)=explode(" ",microtime ());
return ((float)$usec + (float)$sec);
}
function start()//頁面開始執行函數,傳回開始頁面執行的時間
{
$this->starttime=$ this->getmicrotime();
}
function end()//顯示頁面執行的時間
{
$this->stoptime=$this->getmicrotime();
$this->spendtime=$this->stoptime -$this->starttime;
//return round($this->spendtime,10);
}
function display()
{
//$this->end();
echo "
運行時間:".round($this->spendtime,10)."秒
";