Is there free and good line-level profiler for PHP? I'm using xdebug and it's relatively good but it gives me function level output and sometimes it's hard to see where exactly all the time spent in the function goes.
|
|
Zend Platform will give you some more precise profiling information. Its that or using webgrind and zend studio / Eclipse profiler for you performance information. |
||
|
|
|
|
I'm relatively sure I got line-level output with Xdebug and KCacheGrind. Could've been it reported it for those lines with function calls based on how long that function took, but in any case. |
||
|
|
|
There is bytekit, which is an opcode disassembler. That will give you a detailed view of what is going on. Alternatively, you can use C-level debugger such as gdb. This gives you an even closer look, since you can debug in to C-level functions. |
||
|
|
|
|
I don't know if there is such profiler. |
||
|
|
