Re: Tracing exit()

php.internals

Unnamed Person

10 years ago
Hi! having a complete trace from an exception would be great: function shutdown() { $e = new Exception(); echo $e->getTraceAsString(); } function test() { exit; } register_shutdown_function('shutdown'); test(); gives: #0 [internal function]: shutdown() #1 {main} Regards Thomas Bishop Bettini wrote on 04.08.2016 20:10: