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() - Проверить, соответствует ли код завершения процесса завершению по сигналу
Добавить

Примечания пользователей

Пользователи ещё не добавляли примечания для страницы
To Top