exit_finally_3.phpt 243 B

12345678910111213141516171819
  1. --TEST--
  2. exit() and finally (3)
  3. --FILE--
  4. <?php
  5. // TODO: In the future, we should execute the finally block.
  6. function test() {
  7. try {
  8. exit("Exit\n");
  9. } finally {
  10. return 42;
  11. }
  12. }
  13. var_dump(test());
  14. ?>
  15. --EXPECT--
  16. Exit