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.

参见

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top