I'm looking for a way to print the call stack in PHP.
Bonus points if the function flushes the IO buffer.
|
I'm looking for a way to print the call stack in PHP. Bonus points if the function flushes the IO buffer.
| |||||
feedback
|
|
If you want to generate a backtrace, you are looking for
(see the manual page of the first one to find out why the "and/or" ;-) ) | ||||
|
feedback
|
|
More readable than debug_backtrace():
| |||||
feedback
|
|
See | |||
|
feedback
|
|
Use | |||
|
feedback
|
|
To log the trace
Thanks @Tobiasz | ||||
|
feedback
|
|
Backtrace dumps a whole lot of garbage that you don't need. It takes is very long, difficult to read. All you usuall ever want is "what called what from where?" Here is a simple static function solution. I usually put it in a class called 'debug', which contains all of my debugging utility functions.
You call it like this:
And it produces output like this:
| ||||
|
feedback
|
|
You might want to look into | |||
|
feedback
|