分享PHP-pcntl 实现多进程代码
php  /  管理员 发布于 8年前   339
PHP使用PCNTL系列的函数也能做到多进程处理一个事务。比如我需要从数据库中获取80w条的数据,再做一系列后续的处理,这个时候,用单进程?你可以等到明年今天了。。。所以应该使用pcntl函数了。 下面我们来看个实例 代码 运行结果 0){foreach($arChildId as $iKey=> $iPid){ $res = pcntl_waitpid($iPid, $status, WNOHANG); if($res == -1 || $res > 0) { unset($arChildId[$iKey]); echo '* Sub process: '. $iPid. ' exited with '. $status. PHP_EOL; }}}# 子进程执行的逻辑function excuteProcess($iPid, $iSeconds){file_put_contents('./log/'.$iPid.'.log', $iPid.PHP_EOL, FILE_APPEND);sleep($iSeconds);}?>* Process 16163 was created, and Executed, and Sleep 11* Process 16164 was created, and Executed, and Sleep 21* Process 16165 was created, and Executed, and Sleep 24* Process 16166 was created, and Executed, and Sleep 27* Process 16167 was created, and Executed, and Sleep 8* Process 16168 was created, and Executed, and Sleep 14* Process 16169 was created, and Executed, and Sleep 14* Process 16170 was created, and Executed, and Sleep 26* Process 16171 was created, and Executed, and Sleep 20* Process 16172 was created, and Executed, and Sleep 21* Sub process: 16167 exited with 0* Sub process: 16163 exited with 0* Sub process: 16169 exited with 0* Sub process: 16168 exited with 0* Sub process: 16171 exited with 0* Sub process: 16164 exited with 0* Sub process: 16172 exited with 0* Sub process: 16165 exited with 0* Sub process: 16170 exited with 0* Sub process: 16166 exited with 0
您可能感兴趣的文章:
test1 在
opencode + Oh-my-openagent,我的第一个免费的ai编程智能体管家:Sisyphus中评论 test..122 在
学历:一种延缓就业设计,生活需求下的权衡之选中评论 工作几年后,报名考研了,到现在还没认真学习备考,迷茫中。作为一名北漂互联网打工人..Zita 在
Google AI Studio升级全栈 vibe coding体验,可直接构建带登录和数据库的应用中评论 111222..123 在
Clash for Windows作者删库跑路了,github已404中评论 按理说只要你在国内,所有的流量进出都在监控范围内,不管你怎么隐藏也没用,想搞你分..原梓番博客 在
在Laravel框架中使用模型Model分表最简单的方法中评论 好久好久都没看友情链接申请了,今天刚看,已经添加。..
Copyright·© 2019 侯体宗版权所有·
粤ICP备20027696号
