php-src/Zend/tests/exception_in_nested_rope.phpt

18 lines
237 B
Plaintext
Raw Normal View History

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