debug_backtrace() from registered shutdown function in PHP

前端 未结 5 504
长发绾君心
长发绾君心 2020-12-15 05:02

While tinkering for an answer to this question, I found that debug_backtrace() doesn\'t trace beyond the function registered to register_shutdown_function

相关标签:
5条回答
  • 2020-12-15 05:33

    This is a very expensive solution. I never used register_tick_function() or tick and I'm not sure if it works as expected.

    declare(ticks=1);
    
    function tick_handler() {
        global $backtrace;
        $backtrace = debug_backtrace();
    }
    register_tick_function('tick_handler');
    
    
    
    function shutdown() {
        global $backtrace;
        // do check if $backtrace contains a fatal error...
        var_dump($backtrace);
    }
    register_shutdown_function('shutdown');
    
    0 讨论(0)
  • 2020-12-15 05:33

    From my experience, the shutdown function starts with a clean stack, and it has no access to the "original" stack (as it no longer exists at that point).

    Unfortunately, there is no way to save that original stack.

    0 讨论(0)
  • 2020-12-15 05:36

    In XDebug extension, there is a xdebug_get_function_stack() function.

    This one works similar to PHP's internal debug_backtrace(), but keeps the trace even in shutdown handler.

    You won't get the exact exit point though, only the last executed function before the shutdown occured (triggered by die()/exit() call or error).

    This is of course suitable only for development environment.

    0 讨论(0)
  • 2020-12-15 05:39

    Is there any way to circumvent this, forcing PHP to hold the stack trace

    That's rather meaningless, when the registered function is invoked, all your defined functions have returned or been cleared down from the stack.

    If you need to know where your code exited, then you need to instrument your code.

    0 讨论(0)
  • 2020-12-15 05:41

    Inside your registered shutdown function you can get backtrace by error_get_last function. Works for me in PHP7.

    0 讨论(0)
提交回复
热议问题