《PHP教程:php進程間通訊實例分析》要點:
本文介紹了PHP教程:php進程間通訊實例分析,希望對您有用。如果有疑問,可以聯(lián)系我們。
PHP應(yīng)用本文實例講述了php進程間通訊的方法.分享給大家供大家參考,具體如下:
PHP應(yīng)用php單進程單線程處理批量任務(wù)太慢了,受不鳥了,但是php不能多線程,最終選擇了多進程處理批量任務(wù).
PHP應(yīng)用php多進程主要使用for進行分裂,然后利用的unix/linux的信號量進行進程間通訊.
PHP應(yīng)用本例使用的是:生產(chǎn)者=>消費者=>收集器,的模式.
PHP應(yīng)用
<?php
// ===== 全局變量 =====
// ipc進程間通訊
$key = ftok(__FILE__, "a");
$queue = msg_get_queue($key);
// 進程ID
$producer_pid = 0;
$consumers_pid = array();
$collector_pid = posix_getpid();
// ===== 消費者 =====
for ($i=0; $i < 2; $i++) {
$consumer_pid = pcntl_fork();
if ($consumer_pid == -1) {
exit("could not fork!\n");
} else if ($consumer_pid) {
// pcntl_wait($status);
echo "consumer_pid: $consumer_pid\n";
$consumers_pid[] = $consumer_pid;
} else {
$pid = posix_getpid();
echo "consumer_pid: $pid start\n";
while (true) {
msg_receive($queue, $pid, $msgtype, 1024, $message);
if ($message == "exit") {
break;
}
// 數(shù)據(jù)處理
$n = intval($message);
msg_send($queue, $collector_pid, $n * $n);
}
exit("consumer ok!\n");
}
}
// ===== 產(chǎn)生者 =====
$producer_pid = pcntl_fork();
if ($producer_pid == -1) {
exit("could not fork!\n");
} else if ($producer_pid) {
// pcntl_wait($status);
echo "producer_pid: $producer_pid\n";
} else {
$pid = posix_getpid();
echo "producer_pid: $pid start\n";
$n = 0;
for ($i=0; $i < 10; $i++) {
foreach ($consumers_pid as $consumer_pid) {
$n++;
msg_send($queue, $consumer_pid, $n);
}
sleep(1);
}
foreach ($consumers_pid as $consumer_pid) {
msg_send($queue, $consumer_pid, "exit");
}
sleep(1);
msg_send($queue, $collector_pid, "exit");
exit("producer ok!\n");
}
// ===== 收集器 =====
while (true) {
msg_receive($queue, $collector_pid, $msgtype, 1024, $message);
if ($message == "exit") {
break;
}
echo sprintf("% 5d: %d\n", $msgtype, $message);
}
exit("collector ok!\n");
PHP應(yīng)用更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP進程與線程操作技巧總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語法入門教程》、《php日期與時間用法總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
PHP應(yīng)用希望本文所述對大家PHP程序設(shè)計有所幫助.
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.snjht.com/jiaocheng/5866.html