php-src/Zend/tests/exception_in_rope_end.phpt

18 lines
235 B
Plaintext
Raw Normal View History

--TEST--
Exception during rope finalization
--FILE--
<?php
set_error_handler(function() { throw new Exception; });
try {
$b = "foo";
$str = "y$b$a";
} catch (Exception $e) {
echo "Exception\n";
}
?>
--EXPECT--
Exception