Join 4,000+ others and never miss out on new tips, tutorials, and more.
4.x is outdated, please check the latest version 22.x
Latest version:
pecl install openswoole-22.1.2
<?php Swoole\Process::exit (int $status=0) : int
the exit status code of process.
If this code is 0
, it stands for that the process exits normally and continue to execute the registered shutdown function.
If this code isn't 0
, it stands for that the process exits unexpectedly and stops immediately. The father process can use Swoole\Process::wait
to get the exit event and code from the child process.