Fletcher Moore
Fletcher Moore

Reputation: 13814

How would I log every function call the PHP interpreter makes during a given script?

Can I configure mod_php, XDebug, or Eclipse (or some other free program) to print to file the code that is executed? And if so can I limit it to function calls to keep it somewhat readable?

Upvotes: 0

Views: 1040

Answers (1)

Jeremy Kendall
Jeremy Kendall

Reputation: 2869

I use xdebug for that, and webgrind to view the results.

Upvotes: 2

Related Questions