ID: 48969 Updated by: der...@php.net Reported By: bschussek at gmail dot com -Status: Bogus +Status: Assigned Bug Type: Scripting Engine problem Operating System: Linux Ubuntu 9.04 PHP Version: 5.2.10 -Assigned To: +Assigned To: dmitry New Comment:
I am reopening this. Because even with fatal errors, the shutdown handler should run. It always has so if that changes it is a BC break. Assigning to Dmitry. Previous Comments: ------------------------------------------------------------------------ [2009-07-20 10:57:29] j...@php.net FATAL errors are fatal, the execution of the scripts ends at those. No bug here. ------------------------------------------------------------------------ [2009-07-18 16:14:55] bschussek at gmail dot com Description: ------------ I registered both a custom error handler and a custom shutdown function. When calling require with an invalid filename, the following happens: 1. The "warning" error triggers the handler 2. The "fatal" error fires 3. The shutdown function is called BUT when the error handler throws an exception, no shutdown function is called. This DOES work when using trigger_error() instead of throwing the exception. Reproduce code: --------------- function error_handler() { var_dump('ERROR'); throw new Exception('my exception'); } set_error_handler('error_handler'); function shutdown() { var_dump('SHUTDOWN'); } register_shutdown_function('shutdown'); require 'foobar.php'; Expected result: ---------------- string(5) "ERROR" Fatal error: Uncaught exception 'Exception' with message 'my exception' string(8) "SHUTDOWN" Actual result: -------------- string(5) "ERROR" Fatal error: main(): Failed opening required 'foobar.php' ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=48969&edit=1