復制代碼 代碼如下:
<?php
class Timer//頁面執行時間類
{
var starttime;//頁面開始執行時間
var stoptime;//頁面結束執行時間
var spendtime;//頁面執行花費時間
function getmicrotime()//獲取返回當前微秒數的浮點數
{
list(usec,sec)=explode(" ",microtime());
return ((float)usec + (float)sec);
}
function start()//頁面開始執行函數,返回開始頁面執行的時間
{
this->starttime=this->getmicrotime();
}
function display()//顯示頁面執行的時間
{
this->stoptime=this->getmicrotime();
this->spendtime=this->stoptime-this->starttime;
return round(this->spendtime,10);
}
}
/*調用方法
timer=new Timer();
timer->start();
/*在此處放入你要執行的腳本或代碼
for(i=0;i<100000;i++)
{
echo i;
echo "<br>";
}
*/
//echo "<p>執行該代碼花費時間".timer->display()."秒";
?>