Trying to debug PHP using its default current-line-only error messages is horrible. How can I get PHP to produce a backtrace (stack trace) when errors are produced?
|
feedback
|
|
Xdebug prints a backtrace table on errors, and you don't have to write any PHP code to implement it. Downside is you have to install it as a PHP extension. | |||||||
feedback
|
|
My script for installing an error handler that produces a backtrace:
Caveat: it is powerless to affect various 'PHP Fatal Errors', since Zend in their wisdom decided that these would ignore | ||||
|
feedback
|
|
You can use debug_backtrace | ||||
|
feedback
|
|
As php debug extensions, there is Xdebug and PHP DBG. Each one has its advantages and disadvantages. | ||||
|
feedback
|
i wrote a little article about backtracing a while back | ||||
|
feedback
|
|
set_error_handler() + debug_backtrace() | |||
|
feedback
|