exception_in_nested_rope.phpt 237 B

1234567891011121314151617
  1. --TEST--
  2. Exception during nested rope
  3. --FILE--
  4. <?php
  5. set_error_handler(function() { throw new Exception; });
  6. try {
  7. $a = "foo";
  8. $str = "$a${"y$a$a"}y";
  9. } catch (Exception $e) {
  10. echo "Exception\n";
  11. }
  12. ?>
  13. --EXPECT--
  14. Exception