array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'de', ), 'this' => array ( 0 => 'function.pcntl-wifcontinued.php', 1 => 'pcntl_wifcontinued', 2 => 'Checks whether the child process has continued from a job control stop', ), 'up' => array ( 0 => 'ref.pcntl.php', 1 => 'PCNTL Funktionen', ), 'prev' => array ( 0 => 'function.pcntl-wexitstatus.php', 1 => 'pcntl_wexitstatus', ), 'next' => array ( 0 => 'function.pcntl-wifexited.php', 1 => 'pcntl_wifexited', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/pcntl/functions/pcntl-wifcontinued.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

pcntl_wifcontinued

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

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

Beschreibung

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.

Parameter-Liste

status

Der status-Parameter entspricht dem Statusparameter, der für einen erfolgreichen Aufruf von pcntl_waitpid() verwendet wird.

Rückgabewerte

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

Siehe auch