PHP的消息通信机制测试实例


Posted in PHP onNovember 10, 2016

本文实例讲述了PHP的消息通信机制。分享给大家供大家参考,具体如下:

<?php error_reporting(E_ALL&~E_WARNING&~E_NOTICE);
/**
 * Example for sending and receiving Messages via the System V Message Queue
 *
 * To try this script run it synchron/asynchron twice times. One time with ?type=send and one time with ?type=receive
 *
 * @author     Thomas Eimers - Mehrkanal GmbH
 *
 * This document is distributed in the hope that it will be useful, but without any warranty;
 * without even the implied warranty of merchantability or fitness for a particular purpose.
 */
ob_implicit_flush(1);
header('Content-Type: text/plain; charset=ISO-8859-1');
echo "Start...\n";
// Create System V Message Queue. Integer value is the number of the Queue
//$queue = msg_get_queue(100379);
$mesg_key = ftok(__FILE__, 'm');
$mesg_id = msg_get_queue($mesg_key, 0666);
$queue = $mesg_id;
// Sendoptions
$serialize_needed=false; // Must the transfer data be serialized ?
$block_send=false;    // Block if Message could not be send (Queue full...) (true/false)
$msgtype_send=1;     // Any Integer above 0. It signeds every Message. So you could handle multible message
             // type in one Queue.
// Receiveoptions
$msgtype_receive=1;    // Whiche type of Message we want to receive ? (Here, the type is the same as the type we send,
             // but if you set this to 0 you receive the next Message in the Queue with any type.
$maxsize=100;       // How long is the maximal data you like to receive.
$option_receive=MSG_IPC_NOWAIT; // If there are no messages of the wanted type in the Queue continue without wating.
             // If is set to NULL wait for a Message.
// Send or receive 20 Messages
for ($i=0;$i<20;$i++) {
   sleep(1);
  ob_flush();
  flush();
 $message='Hello, This is Flandy,now is '.date("H:i:s",time());   // Transfering Data
 // This one sends
  if (isset($_GET['type'])&&$_GET['type']=='send') {
  if(msg_send($queue,$msgtype_send, $message,$serialize_needed, $block_send,$err)===true) {
   echo "The ".$i." Message has been sent, the messge is ".$message."\n";
  } else {
   var_dump($err);
  }
 // This one received
 } else {
   $queue_status=msg_stat_queue($queue);
   echo 'Get Messages in the queue: '.$queue_status['msg_qnum']."\n";
   print_r($queue_status);
   echo "\n";
  if ($queue_status['msg_qnum']>0) {
   if (msg_receive($queue,$msgtype_receive ,$msgtype_erhalten,$maxsize,$daten,$serialize_needed, $option_receive, $err)===true) {
       echo "Received data:".$daten."\n";
   } else {
       var_dump($err);
   }
  }
 }
}
?>

希望本文所述对大家PHP程序设计有所帮助。

PHP 相关文章推荐
在线竞拍系统的PHP实现框架(二)
Oct 09 PHP
用PHP制作静态网站的模板框架(一)
Oct 09 PHP
PHP 在线翻译函数代码
May 07 PHP
php 图片上传类代码
Jul 17 PHP
PHP MySQL应用中使用XOR运算加密算法分享
Aug 28 PHP
PHP 杂谈《重构-改善既有代码的设计》之一 重新组织你的函数
Apr 09 PHP
php生成QRcode实例
Sep 22 PHP
php中socket的用法详解
Oct 24 PHP
php使用PDO操作MySQL数据库实例
Dec 30 PHP
深入浅析Yii admin的权限控制
Aug 31 PHP
PHP从数组中删除元素的四种方法实例
May 12 PHP
PHP程序员简单的开展服务治理架构操作详解(二)
May 14 PHP
PHP使用GD库输出汉字的方法【测试可用】
Nov 10 #PHP
Yii2框架RESTful API 格式化响应,授权认证和速率限制三部分详解
Nov 10 #PHP
PHP基于反射机制实现插件的可插拔设计详解
Nov 10 #PHP
PHP yii实现model添加默认值的方法(两种方法)
Nov 10 #PHP
PHP实现的曲线统计图表示例
Nov 10 #PHP
PHP  Yii清理缓存的实现方法
Nov 10 #PHP
PHP模拟http请求的方法详解
Nov 09 #PHP
You might like
php使用ICQ网关发送手机短信
2013/10/30 PHP
ThinkPHP多表联合查询的常用方法
2020/03/24 PHP
PHP+jQuery+Ajax实现用户登录与退出
2015/04/27 PHP
详解 PHP加密解密字符串函数附源码下载
2015/12/18 PHP
PHP信号处理机制的操作代码讲解
2019/04/19 PHP
javascript XMLHttpRequest对象全面剖析
2010/04/24 Javascript
使用javascript:将其它类型值转换成布尔类型值的解决方法详解
2013/05/07 Javascript
javascript读取Xml文件做一个二级联动菜单示例
2014/03/17 Javascript
JavaScript中使用Math.PI圆周率属性的方法
2015/06/14 Javascript
实例代码详解jquery.slides.js
2015/11/16 Javascript
jQuery设置Cookie及删除Cookie实例分析
2016/04/15 Javascript
AngularJs 指令详解及示例代码
2016/09/01 Javascript
JS取数字小数点后两位或n位的简单方法
2016/10/24 Javascript
JavaScript轮播停留效果的实现思路
2018/05/24 Javascript
详解在React-Native中持久化redux数据
2019/05/22 Javascript
解决layui数据表格table的横向滚动条显示问题
2019/09/04 Javascript
Vue路由守卫及页面登录权限控制的设置方法(两种)
2020/03/31 Javascript
python3图片转换二进制存入mysql
2013/12/06 Python
详解 Python 与文件对象共事的实例
2017/09/11 Python
Python之reload流程实例代码解析
2018/01/29 Python
Python中的取模运算方法
2018/11/10 Python
Python利用逻辑回归模型解决MNIST手写数字识别问题详解
2020/01/14 Python
python使用numpy实现直方图反向投影示例
2020/01/17 Python
Pycharm如何导入python文件及解决报错问题
2020/05/10 Python
Python如何使用PIL Image制作GIF图片
2020/05/16 Python
python pygame 愤怒的小鸟游戏示例代码
2021/02/25 Python
canvas小画板之平滑曲线的实现
2020/08/12 HTML / CSS
实习生单位鉴定意见
2013/12/04 职场文书
保险公司早会主持词
2014/03/22 职场文书
网络营销策划方案
2014/06/04 职场文书
2014年技术工作总结范文
2014/11/20 职场文书
护士节慰问信
2015/02/15 职场文书
升职自荐信范文
2015/03/27 职场文书
结婚通知短信怎么写
2015/04/17 职场文书
2016廉洁从政心得体会
2016/01/19 职场文书
如何使用 resize 实现图片切换预览功能
2021/08/23 HTML / CSS