Reputation: 2470
Is there a PHP(or Apache?) option to enable logging of every function call possible in my server side code? (I would like to use this rather than error_log for logging/analyzing the code flow)
Upvotes: 6
Views: 6717
Reputation: 1175
If you're not allowed to install Xdebug you can try debug_backtrace()
Upvotes: 2