Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
3  
hey Mark, check out this comment to help you solve the negative comments: ro.php.net/manual/en/function.microtime.php#99524 – Midiane Mar 8 '12 at 10:59
Thanks for the tip! – Mark Biek Mar 8 '12 at 13:16
4  
That comment linked to by @Midiane doesn't make sense. If it seemed to solve the commenter's problem, it must have been a coincidence. Just using microtime() will lead to sometimes evaluating expressions like: "0.00154800 1342892546" - "0.99905700 1342892545", which will evaluate like: 0.001548 - 0.999057. You can use microtime( TRUE ) to avoid that problem, as pointed out by @luka. – JMM Jul 21 '12 at 18:16

7 Answers

up vote 55 down vote accepted

The PECL APD extension is used as follows:

<?php
apd_set_pprof_trace();

//rest of the script
?>

After, parse the generated file using pprofp.

Example output:

Trace for /home/dan/testapd.php
Total Elapsed Time = 0.00
Total System Time  = 0.00
Total User Time    = 0.00


Real         User        System             secs/    cumm
%Time (excl/cumm)  (excl/cumm)  (excl/cumm) Calls    call    s/call  Memory Usage Name
--------------------------------------------------------------------------------------
100.0 0.00 0.00  0.00 0.00  0.00 0.00     1  0.0000   0.0009            0 main
56.9 0.00 0.00  0.00 0.00  0.00 0.00     1  0.0005   0.0005            0 apd_set_pprof_trace
28.0 0.00 0.00  0.00 0.00  0.00 0.00    10  0.0000   0.0000            0 preg_replace
14.3 0.00 0.00  0.00 0.00  0.00 0.00    10  0.0000   0.0000            0 str_replace
share|improve this answer
1  
I just want to mention again how helpful this has been! – Mark Biek Oct 31 '08 at 15:04
9  
I discourage any one to try this answer, I just lost 3 hours messing around. To finally found this post (progclub.org/blog/2012/01/10/profiling-a-php-script) and still lost with a not working profiler. – user457015 Jul 31 '12 at 16:43
The APD extension is broken on php 5.4. – user1933738 Jan 24 at 20:59
@user457015 +1 for you. I think I would have thrown my computer out the window long time ago :) – Jelmer Jan 25 at 9:06

You want xdebug I think. Install it on the server, turn it on, pump the output through kcachegrind (for linux) or wincachegrind (for windows) and it'll show you a few pretty charts that detail the exact timings, counts and memory usage (but you'll need another extension for that).

It rocks, seriously :D

share|improve this answer
4  
I found this a lot easier to implement than the APD solution. But maybe that's because for some reason APD didn't compile properly on my system. Also kcachegrind's charts were as pretty as promised. – wxs Dec 5 '08 at 16:23
hi mercutio, which extension is it exactly that enables memory usage in the xdebug cachegrinds? I can't for the life of me get this to work. – EvilPuppetMaster Feb 18 '09 at 23:21
1  
@EvilPuppetMaster, you need to compile php with --enable-memory-limit or use a more modern php version. See xdebug.org/docs/basic#xdebug_memory_usage – mercutio Feb 19 '09 at 16:29
20  
xdebug + webgrind quickly became my weapon of choice for quick and easy profiling. code.google.com/p/webgrind – xkcd150 Apr 27 '10 at 11:32
1  
xdebug + xdebug_start_trace() + xdebug_stop_trace() = win – quano May 9 '11 at 11:24
show 1 more comment

if substracting microtimes gives you negative results try to use microtime(true) function with true argument so that function returns float instead of string that returns if it is called without arguments. that helped me.

share|improve this answer

PECL XHPROF looks interensting too. It has clickable HTML interface for viewing reports and pretty straightforward documentation. I have yet to test it though.

share|improve this answer
That looks like it isn't getting much love. Last update in 2009, no PEAR packages for 5.3, 5.4 and beyond... – dland Feb 2 at 19:23
1  
Facebook created a fork with support through php 5.5 github.com/facebook/xhprof – borkencode Feb 8 at 21:54
Check this fork also which proposes some additional adjustments : github.com/preinheimer/xhprof – Fedir Apr 4 at 15:20

I like to use phpDebug for profiling. http://phpdebug.sourceforge.net/www/index.html

It outputs all time / memory usage for any SQL used as well as all the included files. Obviously, it works best on code that's abstracted.

For function and class profiling I'll just use microtime() + get_memory_usage() + get_peak_memory_usage().

share|improve this answer

For benchmarking, like in your example, I use the pear Benchmark package. You set markers for measuring. The class also provides a few presentation helpers, or you can process the data as you see fit.

I actually have it wrapped in another class with a __destruct method. When a script exits, the output is logged via log4php to syslog, so I have a lot of performance data to work from.

share|improve this answer

XDebug is not stable and it's not always available for particular php version. For example on some servers I still run php-5.1.6, -- it's what comes with RedHat RHEL5 (and btw still receives updates for all important issues), and recent XDebug does not even compile with this php. So I ended up with switching to DBG debugger Its php benchmarking provides timing for functions, methods, modules and even lines.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.