exceptions_003.phpt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --TEST--
  2. Test breaks on HANDLE_EXCEPTION
  3. --PHPDBG--
  4. b 5
  5. r
  6. s
  7. s
  8. q
  9. --EXPECTF--
  10. [Successful compilation of %s]
  11. prompt> [Breakpoint #0 added at %s:5]
  12. prompt> [Breakpoint #0 at %s:5, hits: 1]
  13. >00005: x();
  14. 00006: } finally {
  15. 00007: print "ok\n";
  16. prompt> [L0 %s HANDLE_EXCEPTION %s]
  17. >00005: x();
  18. 00006: } finally {
  19. 00007: print "ok\n";
  20. prompt> [L7 %s ECHO<1> "ok\n" %s]
  21. >00007: print "ok\n";
  22. 00008: }
  23. 00009: } catch (Error $e) {
  24. prompt> ok
  25. [L7 %s FAST_RET ~%d try-catch(0) %s]
  26. [L9 %s CATCH<%d> "Error" $e %s]
  27. >00005: x();
  28. 00006: } finally {
  29. 00007: print "ok\n";
  30. prompt> [L10 %s ECHO<1> "caught\n" %s]
  31. >00010: print "caught\n";
  32. 00011: }
  33. 00012:
  34. prompt> caught
  35. [L14 %s RETURN<-1> 1 %s]
  36. >00014:
  37. prompt>
  38. --FILE--
  39. <?php
  40. try {
  41. try {
  42. x();
  43. } finally {
  44. print "ok\n";
  45. }
  46. } catch (Error $e) {
  47. print "caught\n";
  48. }
  49. ?>