Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16319 программистов и 1793 робота. Сейчас ищет 1961 программист ...
pcntl_fork - Forks the currently running process
Вернуться к: PCNTL Функции
pcntl_fork
(PHP 4 >= 4.1.0, PHP 5, PHP 7)
pcntl_fork — Forks the currently running process
Описание
int pcntl_fork
( void
)
The pcntl_fork() function creates a child process that differs from the parent process only in its PID and PPID. Please see your system's fork(2) man page for specific details as to how fork works on your system.
Возвращаемые значения
On success, the PID of the child process is returned in the parent's thread of execution, and a 0 is returned in the child's thread of execution. On failure, a -1 will be returned in the parent's context, no child process will be created, and a PHP error is raised.
Примеры
Пример #1 pcntl_fork() example
<?php
$pid = pcntl_fork();
if ($pid == -1) {
die('could not fork');
} else if ($pid) {
// we are the parent
pcntl_wait($status); //Protect against Zombie children
} else {
// we are the child
}
?>
Смотрите также
- pcntl_waitpid() - Waits on or returns the status of a forked child
- pcntl_signal() - Installs a signal handler
- setproctitle() - Set the process title
Вернуться к: PCNTL Функции