©
本文档使用 PHP中文网手册 发布
(PHP 4 >= 4.1.0, PHP 5)
pcntl_waitpid — 等待或返回fork的子进程状态
$pid
, int &$status
[, int $options
= 0
] )
挂起当前进程的执行直到参数pid
指定的进程号的进程退出,
或接收到一个信号要求中断当前进程或调用一个信号处理函数。
如果pid
指定的子进程在此函数调用时已经退出(俗称僵尸进程),此函数
将立刻返回。关于waitpid更详细的规范请参见您系统的waitpid(2)手册。
pid
参数pid
的值可以是以下之一:
< -1 |
等待任意进程组ID等于参数pid 给定值的绝对值的进程。
|
-1 | 等待任意子进程;与pcntl_wait函数行为一致。 |
0 | 等待任意与调用进程组ID相同的子进程。 |
> 0 |
等待进程号等于参数pid 值的子进程。
|
Note:
指定-1作为
pid
的值等同于 pcntl_wait() 提供(负的options
)。
status
pcntl_waitpid() 将会存储状态信息到status
参数上,这个通过status
参数返回的状态信息可以用以下函数
pcntl_wifexited() ,
pcntl_wifstopped() ,
pcntl_wifsignaled() ,
pcntl_wexitstatus() ,
pcntl_wtermsig() 以及
pcntl_wstopsig() 获取其具体的值。
options
如果您的操作系统(多数BSD类系统)允许使用wait3,您可以提供可选的options
参数。如果这个参数没有提供,wait将会被用作系统调用。如果wait3不可用,提供参数
options
不会有任何效果。options
的值可以是0
或者以下两个常量或两个常量“或运算”结果(即两个常量代表意义都有效)。
WNOHANG | 如果没有子进程退出立刻返回。 |
WUNTRACED | 子进程已经退出并且其状态未报告时返回。 |
pcntl_waitpid() 返回退出的子进程进程号,发生错误时返回-1,如果提供了
WNOHANG
作为option(wait3可用的系统)并且没有可用子进程时返回0。
[#1] fx4084 at gmail dot com [2014-09-12 07:53:10]
<?php
$childs = array();
// Fork some process.
for($i = 0; $i < 10; $i++) {
$pid = pcntl_fork();
if($pid == -1)
die('Could not fork');
if ($pid) {
echo "parent \n";
$childs[] = $pid;
} else {
// Sleep $i+1 (s). The child process can get this parameters($i).
sleep($i+1);
// The child process needed to end the loop.
exit();
}
}
while(count($childs) > 0) {
foreach($childs as $key => $pid) {
$res = pcntl_waitpid($pid, $status, WNOHANG);
// If the process has already exited
if($res == -1 || $res > 0)
unset($childs[$key]);
}
sleep(1);
}
?>
[#2] saguto dot l7cc at gmail dot com [2008-04-09 21:09:05]
please note, if you using configure option --enable-sigchild(Enable PHP's own SIGCHLD handler) when complie php(under linux 2.6.18-53.1.13.el5.centos.plus and php 5.2.5 as I know), pcntl_waitpid and pcntl_wait in php script would never return the child pid, because the build in handle get it first.