php-src/Zend/tests/bug47714.phpt
2017-02-03 18:52:57 +01:00

24 lines
457 B
PHP

--TEST--
Testing lambda function in set_exception_handler()
--FILE--
<?php
function au($class) {
eval('class handler {
function handle($e) {
echo $e->getMessage()."\n";
}
}');
}
spl_autoload_register('au');
set_exception_handler(function($exception) {
$h = new handler();
$h->handle($exception);
});
throw new Exception('exception');
?>
--EXPECT--
exception