update page now
PHP 8.4.22 Released!

pcntl_wifcontinued

(No version information available, might only be in Git)

pcntl_wifcontinuedChecks whether the child process has continued from a job control stop

説明

function pcntl_wifcontinued(int $status): bool

Checks whether the child process which caused the return of pcntl_waitpid() has continued from a job control stop. This function is only useful if the call to pcntl_waitpid() was done using the WCONTINUED option.

パラメータ

status
パラメータ status は、 pcntl_waitpid() が正常にコールされた際に得られます。

戻り値

Returns true if the child process which caused the return of pcntl_waitpid() has continued from a job control stop, false otherwise.

参考

  • pcntl_waitpid() - 待つかフォークした子プロセスのステータスを返す
  • pcntl_wifstopped() - 子プロセスが現在停止しているかどうかを調べる
  • pcntl_wifexited() - ステータスコードが正常終了を表しているかどうかを調べる
  • pcntl_wifsignaled() - ステータスコードがシグナルによる終了を表しているかどうかを調べる
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top