News Feed
Jobs Feed
Sections




News Archive
Kurt Payne's Blog:
User register_tick_function to profile your code
February 07, 2012 @ 13:26:23

Kurt Payne has a new post to his blog showing how to use register_tick_function with a callback to help benchmark and profile your application to find its pain spots.

A profiler gives you the ability to trace the performance of your code through every function call and create an overview of your system's performance over a certain time period and helps you make intelligent decisions about where to look for problems. [...] But what if you're in an environment where you can't install [the xdebug or xhprof] extension? Luckily, php has a built-in function called register_tick_function that gives you a way to hook in to every user function that's called. With this, you can write a profiler yourself.

A bit of sample code illustrates his method - it defines a "do_profile" function and assigns it with the register_tick_function call. This function generates a debug backtrace and echos out the function path it took to get to that spot (output is included). He provides code for a bit more useful profiling and points out that it could easily be graphed to help visualize the problems. Also included are a few caveats to watch out for when using this method of profiling.

0 comments voice your opinion now!
registertickfunction profile graph performance xdebug xhprof


blog comments powered by Disqus

Similar Posts

Paul Reinheimer's Blog: A GUI for XHProf

Douglas Clifton's Blog: PHP Specificity Part IV: Debugging

Ilia Alshanetsky\'s Blog: Frankfurt Conference

Ibuildings Blog: Boost performance with parallel processing

Derick Rethans' Blog: XDebug 2.0.2


Community Events











Don't see your event here?
Let us know!


language community framework symfony2 conference example release usergroup series interview zendframework2 rest database testing functional phpunit opinion introduction development podcast

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework