bug51394.phpt 433 B

123456789101112131415161718192021
  1. --TEST--
  2. Bug #51394 (Error line reported incorrectly if error handler throws an exception)
  3. --INI--
  4. error_reporting=-1
  5. --FILE--
  6. <?php
  7. function eh()
  8. {
  9. throw new Exception("error!");
  10. return false;
  11. }
  12. set_error_handler("eh");
  13. $a = $empty($b);
  14. ?>
  15. --EXPECTF--
  16. Fatal error: Uncaught Exception: error! in %sbug51394.php:%d
  17. Stack trace:
  18. #0 %s(%d): eh(2, 'Undefined varia...', '%s', %d)
  19. #1 {main}
  20. thrown in %sbug51394.php on line %d