2010年11月1日 星期一

[PHP] 用microtime 記錄PHP執行時間

在PHP的開頭貼上:
$mtime = explode(" ", microtime()); 
$startTime = $mtime[1] + $mtime[0];

在結尾貼上

$mtime = explode(" ", microtime()); 
$endTime = $mtime[1] + $mtime[0]; 
$totalTime = ($endTime - $startTime); 
echo $totalTime." seconds";


就會顯示如
3.99565601349 seconds
的結果
Related Posts Plugin for WordPress, Blogger...