seahorse
seahorse

Reputation: 2470

PHP Logging option to log all function calls?

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

Answers (2)

Mike
Mike

Reputation: 1175

If you're not allowed to install Xdebug you can try debug_backtrace()

Upvotes: 2

Dipesh Parmar
Dipesh Parmar

Reputation: 27382

use xDebug that the thing you are asking for.

Upvotes: 8

Related Questions