temporary_cleaning_015.phpt 253 B

1234567891011121314151617
  1. --TEST--
  2. Attempt to free invalid structure (result of ROPE_INIT is not a zval)
  3. --FILE--
  4. <?php
  5. set_error_handler(function () {
  6. throw new Exception();
  7. });
  8. $a = [];
  9. $b = "";
  10. try {
  11. echo "$a$b\n";
  12. } catch (Exception $ex) {
  13. }
  14. ?>
  15. DONE
  16. --EXPECT--
  17. DONE