1. 程式人生 > >PHP檢測每一段代碼執行時間

PHP檢測每一段代碼執行時間

span 時間 pre time 耗時 ech echo 代碼 代碼執行

$t1 = microtime(true);
sleep(3);
$t2 = microtime(true);
echo ‘程序耗時‘.round($t2-$t1,3).‘秒‘;

PHP檢測每一段代碼執行時間