我真的一直想測試正則表達式等的速度和php.net它有這個例子:PHP:函數的時間速度,但速度太快?
$time_start = microtime(true);
// Sleep for a while
usleep(100); // Or anything for that matter..
$time_end = microtime(true);
$time = $time_end - $time_start;
echo "Did nothing in $time seconds\n";
編輯:我的意思是到位usleep的打大循環的功能( )。它總是顯示一個總是在1以下的非常隨機的數字。它沒有顯示任何值得的基準!
您正在使用哪個PHP版本? – MitMaro 2010-01-31 06:00:33