exit_with_status.php 231 B

123456789101112
  1. <?php
  2. $exit_status = 0;
  3. go(function () {
  4. try {
  5. exit(123);
  6. } catch (\Swoole\ExitException $e) {
  7. global $exit_status;
  8. $exit_status = $e->getStatus();
  9. }
  10. });
  11. swoole_event_wait();
  12. exit($exit_status);