成人精品一区二区三区中文字幕-成人精品一区二区三区-成人精品一级毛片-成人精品亚洲-日本在线视频一区二区-日本在线视频免费

導航首頁 ? 技術教程 ? 分享PHP-pcntl 實現多進程代碼
全站頭部文字 我要出現在這里
分享PHP-pcntl 實現多進程代碼 772 2024-01-25   

PHP使用PCNTL系列的函數也能做到多進程處理一個事務。比如我需要從數據庫中獲取80w條的數據,再做一系列后續的處理,這個時候,用單進程?你可以等到明年今天了。。。所以應該使用pcntl函數了。

下面我們來看個實例

代碼

<?php
$arChildId = array();

for($i = 0; $i < 10; $i++)
{
$iPid = pcntl_fork();
if($iPid == -1)
{
  die('can't be forked.');
}

if($iPid)
{
  # 主進程邏輯
  $arChildId[] = $iPid;
}
else
  {
  # 子進程邏輯
  $iPid = posix_getpid(); # 獲取子進程的ID
  $iSeconds = rand(5, 30);
  echo '* Process '. $iPid. ' was created, and Executed, and Sleep '. $iSeconds. PHP_EOL;
  excuteProcess($iPid, $iSeconds);
  exit();
}
}

while(count($arChildId) > 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

PHP

主站蜘蛛池模板: 飞天猪| free hd xxxx moms movie777| 好3| 电影《地狱神探》| 托比·斯蒂芬斯| 离歌吉他谱| 冬日舞蹈教程完整版| 叶子楣图片| 白鲸 电影| 成龙版杨家将电影免费播放| 二胡独奏北国之春| 陈建斌梅婷新剧《不惑之旅》| 小孩脸上一块白一块白是什么原因| 邵雨薇电影| 美食总动员在线观看完整版免费| 爱很简单简谱| 38在线电影| 鬣狗交配视频| 妈妈的花样年华演员表全部| river flows in you吉他谱| 任港秀| 火烈鸟电影完整版视频| 飞虎神鹰1-42集免费| 芝加哥警署第十一季| 2025女人最旺微信头像| 尹雪喜电影| 大学英语精读4课后答案| christie stevens| 邓紫飞| 蓝家宝电影| 同性gay在线| free teen| 韧战作文600字| 范艳华| 《爱与野蛮》电影| 荒岛爱情免费完整版在线观看高清| 调教 打屁股 鞭打 拍击视频| 郑艳丽曹查理主演的影片| 陈若仪个人简历资料| 忘却的旋律| 李轻扬|

!!!站長長期在線接!!!

網站、小程序:定制開發/二次開發/仿制開發等

各種疑難雜癥解決/定制接口/定制采集等

站長微信:lxwl520520

站長QQ:1737366103