views:

283

answers:

2

Do any of the well-known PHP debuggers offer any method of logging stack traversal? Say I wanted to somehow store a log of every entry/exit of every class, class method, and function.

Is there any way to do this all on the server side (maybe some sort of plaintext client that could log every step-in/step-out automatically)?

Update: It looks like I would be looking for some sort of PHP-based DBGP client if working with Xdebug. The only thing I've found so far is a CLI client that I can access indirectly with PHP (assuming the PHP runtime user has access): http://candyscript.com/projects/dbgp/

A: 
André Hoffmann