pcntl_wifcontinued
PHP Manual
PHP Manual»Функції PCNTL»pcntl_wifcontinued

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