set_exception_handler.phpt 343 B

12345678910111213141516171819
  1. --TEST--
  2. set_exception_handler() in phpdbg
  3. --PHPDBG--
  4. r
  5. c
  6. q
  7. --EXPECTF--
  8. [Successful compilation of %s]
  9. prompt> [Uncaught Exception in %s on line 4: test]
  10. >00004: throw new Exception("test");
  11. 00005:
  12. prompt> EX
  13. [Script ended normally]
  14. prompt>
  15. --FILE--
  16. <?php
  17. set_exception_handler(function () { print "EX\n"; });
  18. throw new Exception("test");