<?php
if (! function_exists('pcntl_fork')) die('PCNTL functions not available on this PHP installation');
for ($i = 1; $i <= 5; ++$i) {
$pid = pcntl_fork();
if (!$pid) {
sleep(1);
print "In child $i\n";
for($b=0; $b<2000; $b++) {
sleep(1);
echo 'we are the child' . "$i\n";
}
exit($i);
}
}
while (pcntl_waitpid(0, $status) != -1) {
$status = pcntl_wexitstatus($status);
echo "Child $status completed\n";
}
/*for($i = 0; $i<3; $i++) {
echo "-----------------------$i-------------------\n";
$pid = pcntl_fork();
if ($pid == -1) {
die('could not fork');
} else if ($pid) {
var_dump($pid);
// we are the parent
for($a = 0; $a<2000; $a++) {
sleep(1);
echo 'we are the parent' . "$a\n";
}
pcntl_wait($status); //Protect against Zombie children
} else {
var_dump($pid);
for($b=0; $b<2000; $b++) {
sleep(1);
echo 'we are the child' . "$b\n";
}
exit(0);
// we are the child
}
} */
PHP之pcntl_fork多进程
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 概述 最近在学习Replugin源码时,遇到了其中的多进程部分。由于太久没使用,有点生疏,刚好重拾总结下。AIDL...
- 无论在哪种编程语言中,多线程都是重中之重。所以说掌握多线程并发编程是一个优秀的程序员所必须的一项技能。虽然平时都有...