Search Results
pcntl_wifsignaled (PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8) pcntl_wifsignaled — Checks whether the status code represents a termination due to a signal
pcntl_wifsignaled 15 nov. 2018 26 fois (PHP 4 >= 4.1.0, PHP 5, PHP 7, PHP 8) pcntl_wifsignaled — Retourne true si le code statut représente une fin due à un signal
pcntl_wifsignaled — Checks whether the status code represents a termination due to a signal pcntl_wifstopped — Checks whether the child process is currently stopped
Description The pcntl_wifsignaled of PCNTL for PHP checks whether the status code represents a termination due to a signal.
Simple usage example of `pcntl_wifsignaled ()`. The PHP function `pcntl_wifsignaled ()` is used to determine whether a process has terminated due to a signal. It checks the status code returned by `pcntl_waitpid ()` or `pcntl_wait ()`, and returns true if the termination occurred because of a signal, or false otherwise.
pcntl_wifsignaled — Retourne true si le code statut représente une fin due à un signal pcntl_wifstopped — Retourne true si le processus fils est stoppé pcntl_wstopsig — Retourne le signal qui a causé l'arrêt du processus fils pcntl_wtermsig — Retourne le signal qui a provoqué la fin du processus fils
Process Control support in PHP implements the Unix style of process creation, program execution, signal handling and process termination. Process Control should not be enabled within a web server environment and unexpected results may happen if any Process Control functions are used within a web server environment.
