複製程式碼 程式碼如下:
$t1 = explode(' ', microtime());
// ...執行程式碼...
$t2 = explode(' ', microtime());
echo ($t2[1]-$t1[1]).'s '.($t2[0]- $t1[0]).'ms';
複製程式碼 程式碼如下:
$t1 = microtime(true);
// ...執行程式碼...
$ t2 = microtime(true);
echo '耗時'.round($t2-$t1,3).'秒';
以上就介紹了put your head on my shoulder PHP 計算程式碼執行耗時的程式碼修正網路上普遍錯誤,包括了put your head on my shoulder方面的內容,希望對PHP教程有興趣的朋友有所幫助。