[PHP-DEV] Patch to add profiling support to PHP at the PHP level

2002-07-28 Thread swbrown
Hello, I made a patch to add PHP profiling support to the PHP language. It adds 'set_profile_handler' and 'restore_profile_handler' that work similar to the 'set_error_handler' and 'restore_error_handler' functions and are the minimum needed to allow people to profile their PHP code directly from

Re: [PHP-DEV] Patch to add profiling support to PHP at the PHP level

2002-07-28 Thread George Schlossnagle
The nice thing about a module which dumps external files is taht you can use the raw data in any number of ways. For example with APD, you can generate a complete call graph, provide statics inclusive or exclusive of child calls, and do rather arbitrary type sorting. This is seems to be the