2012-09-06 15:26:40 +08:00
|
|
|
--TEST--
|
|
|
|
Bug #60909 (custom error handler throwing Exception + fatal error = no shutdown function).
|
|
|
|
--FILE--
|
|
|
|
<?php
|
|
|
|
register_shutdown_function(function(){echo("\n\n!!!shutdown!!!\n\n");});
|
|
|
|
set_error_handler(function($errno, $errstr, $errfile, $errline){
|
|
|
|
echo "error($errstr)";
|
|
|
|
throw new Exception("Foo");
|
|
|
|
});
|
|
|
|
|
|
|
|
require 'notfound.php';
|
|
|
|
--EXPECTF--
|
2013-01-14 08:34:35 +08:00
|
|
|
error(require(notfound.php): failed to open stream: %s)
|
2015-05-18 00:35:18 +08:00
|
|
|
Warning: Uncaught Exception: Foo in %sbug60909_1.php:5
|
2012-09-06 15:26:40 +08:00
|
|
|
Stack trace:
|
|
|
|
#0 %sbug60909_1.php(8): {closure}(2, 'require(notfoun...', '%s', 8, Array)
|
|
|
|
#1 %sbug60909_1.php(8): require()
|
|
|
|
#2 {main}
|
|
|
|
thrown in %sbug60909_1.php on line 5
|
|
|
|
|
|
|
|
Fatal error: main(): Failed opening required 'notfound.php' (include_path='%s') in %sbug60909_1.php on line 8
|
|
|
|
|
|
|
|
|
|
|
|
!!!shutdown!!!
|