//修改php的默認(rèn)時區(qū)date_default_timezone_get('PRC');//使用微妙計算php腳本執(zhí)行時間echo microtime(); echo" 返回當(dāng)前unix時間戳和微秒數(shù)";echo" ";classTimer{private$startTime; private$stopTime; function__construct(){$this->startTime=0; $this->stopTime=0;
} functionstart(){$this->startTime=microtime(true);
} functionstop(){$this->stopTime=microtime(true);
} functionspent(){return round(($this->stopTime - $this->startTime),4);
}
}$timer= new Timer();$timer->start();
usleep(1000);$timer->stop();echo"執(zhí)行該腳本用時".$timer->spent()."秒 ";
以上就介紹了php 計算腳本執(zhí)行時間,,包括了方面的內(nèi)容,希望對PHP教程有興趣的朋友有所幫助,。 文章來源:https://www./faq/332509.html
|