Have you though of trying a simple counter such as this?
function getmicrotime()
{
list($usec, $sec) = explode(" ",microtime());
return ((float)$usec + (float)$sec);
}
$time = getmicrotime();
/*
* benchmark code here
*/
echo "<p>Time elapsed: ",getmicrotime() - $time, " seconds";
Alternativly you can visit this webpage: PHP Optimizing
Hopy you figure it out 🙂 - Rob
Edit: Oops, didn't know you already had that link posted -- But its still a great reference 🙂