pcntl_exec | PHP 4.1.0 |
bool pcntl_exec(string path[, array args[, array envs]]) |
|
Exécute le programme indiqué dans l'espace de processus actuel conformément à exec() |
pcntl_fork | PHP 4.1.0 |
int pcntl_fork(void) |
|
Met le processus actuellement en cours d'exécution entre parenthèses de la même manière que l'opérateur système Unix fork( ) |
pcntl_signal | PHP 4.1.0 |
bool pcntl_signal(long signo, mixed handle) |
|
Attribue un gestionnaire de signal système à une fonction PHP |
pcntl_waitpid | PHP 4.1.0 |
int pcntl_waitpid(long pid, long status, long options) |
|
Attend ou renvoie l'état d'un enfant entre parenthèses conformément à l'opérateur système waitpid() |
pcntl_wexitstatus | PHP 4.1.0 |
int pcntl_wexitstatus(long status) |
|
Renvoie le code de statut d'une sortie d'enfant |
pcntl_wifexited | PHP 4.1.0 |
bool pcntl_wifexited(long status) |
|
Renvoie true si le code de statut enfant correspond à une sortie réussie |
pcntl_wifsignaled | PHP 4.1.0 |
bool pcntl_wifsignaled(long status) |
|
Renvoie true si le code de statut enfant correspond à un processus qui s'est achevé à cause d'un signal |
pcntl_wifstopped | PHP 4.1.0 |
bool pcntl_wifstopped(long status) |
|
Renvoie true si le code de statut enfant correspond à un processus arrêté (WUNTRACED doit avoir été utilisé avec waitpid()) |
pcntl_wstopsig | PHP 4.1.0 |
int pcntl_wstopsig(long status) |
|
Renvoie le numéro du signal qui a entraîné l'arrêt du processus considéré |
pcntl_wtermsig | PHP 4.1.0 |
int pcntl_wtermsig(long status) |
|
Renvoie le numéro du signal qui a interrompu le processus considéré |