What's the easiest way to profile a PHP script?
I'd love tacking something on that shows me a dump of all function calls and how long they took but I'm also OK with putting something around specific functions.
I tried experimenting with the microtime function:
$then = microtime();
myFunc();
$now = microtime();
echo sprintf("Elapsed: %f", $now-$then);
but that sometimes gives me negative results. Plus it's a lot of trouble to sprinkle that all over my code.
microtime()will lead to sometimes evaluating expressions like:"0.00154800 1342892546" - "0.99905700 1342892545", which will evaluate like:0.001548 - 0.999057. You can usemicrotime( TRUE )to avoid that problem, as pointed out by @luka. – JMM Jul 21 '12 at 18:16