登录  /  注册

PHP和RabbitMQ实现消息队列的完整代码

不言
发布: 2019-03-15 17:23:06
转载
3930人浏览过

本篇文章给大家带来的内容是关于php和rabbitmq实现消息队列的完整代码,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

先安装PHP对应的RabbitMQ,这里用的是 php_amqp 不同的扩展实现方式会有细微的差异.
php扩展地址: http://pecl.php.net/package/amqp
具体以官网为准  http://www.rabbitmq.com/getstarted.html 

介绍

config.php 配置信息
BaseMQ.php MQ基类
ProductMQ.php 生产者类
ConsumerMQ.php 消费者类
Consumer2MQ.php 消费者2(可有多个)

config.php
    <?php     return [
        //配置
        &#39;host&#39; => [
            'host' =&gt; '127.0.0.1',
            'port' =&gt; '5672',
            'login' =&gt; 'guest',
            'password' =&gt; 'guest',
            'vhost'=&gt;'/',
        ],
        //交换机
        'exchange'=&gt;'word',
        //路由
        'routes' =&gt; [],
    ];
登录后复制
BaseMQ.php
    <?php     /**
     * Created by PhpStorm.
     * User: pc
     * Date: 2018/12/13
     * Time: 14:11
     */
    
    namespace MyObjSummary\rabbitMQ;
    
    /** Member
     *      AMQPChannel
     *      AMQPConnection
     *      AMQPEnvelope
     *      AMQPExchange
     *      AMQPQueue
     * Class BaseMQ
     * @package MyObjSummary\rabbitMQ
     */
    class BaseMQ
    {
        /** MQ Channel
         * @var \AMQPChannel
         */
        public $AMQPChannel ;
    
        /** MQ Link
         * @var \AMQPConnection
         */
        public $AMQPConnection ;
    
        /** MQ Envelope
         * @var \AMQPEnvelope
         */
        public $AMQPEnvelope ;
    
        /** MQ Exchange
         * @var \AMQPExchange
         */
        public $AMQPExchange ;
    
        /** MQ Queue
         * @var \AMQPQueue
         */
        public $AMQPQueue ;
    
        /** conf
         * @var
         */
        public $conf ;
    
        /** exchange
         * @var
         */
        public $exchange ;
    
        /** link
         * BaseMQ constructor.
         * @throws \AMQPConnectionException
         */
        public function __construct()
        {
            $conf =  require &#39;config.php&#39; ;
            if(!$conf)
                throw new \AMQPConnectionException(&#39;config error!&#39;);
            $this->conf     = $conf['host'] ;
            $this-&gt;exchange = $conf['exchange'] ;
            $this-&gt;AMQPConnection = new \AMQPConnection($this-&gt;conf);
            if (!$this-&gt;AMQPConnection-&gt;connect())
                throw new \AMQPConnectionException("Cannot connect to the broker!\n");
        }
    
        /**
         * close link
         */
        public function close()
        {
            $this-&gt;AMQPConnection-&gt;disconnect();
        }
    
        /** Channel
         * @return \AMQPChannel
         * @throws \AMQPConnectionException
         */
        public function channel()
        {
            if(!$this-&gt;AMQPChannel) {
                $this-&gt;AMQPChannel =  new \AMQPChannel($this-&gt;AMQPConnection);
            }
            return $this-&gt;AMQPChannel;
        }
    
        /** Exchange
         * @return \AMQPExchange
         * @throws \AMQPConnectionException
         * @throws \AMQPExchangeException
         */
        public function exchange()
        {
            if(!$this-&gt;AMQPExchange) {
                $this-&gt;AMQPExchange = new \AMQPExchange($this-&gt;channel());
                $this-&gt;AMQPExchange-&gt;setName($this-&gt;exchange);
            }
            return $this-&gt;AMQPExchange ;
        }
    
        /** queue
         * @return \AMQPQueue
         * @throws \AMQPConnectionException
         * @throws \AMQPQueueException
         */
        public function queue()
        {
            if(!$this-&gt;AMQPQueue) {
                $this-&gt;AMQPQueue = new \AMQPQueue($this-&gt;channel());
            }
            return $this-&gt;AMQPQueue ;
        }
    
        /** Envelope
         * @return \AMQPEnvelope
         */
        public function envelope()
        {
            if(!$this-&gt;AMQPEnvelope) {
                $this-&gt;AMQPEnvelope = new \AMQPEnvelope();
            }
            return $this-&gt;AMQPEnvelope;
        }
    }
登录后复制

ProductMQ.php

    <?php     //生产者 P
    namespace MyObjSummary\rabbitMQ;
    require &#39;BaseMQ.php&#39;;
    class ProductMQ extends BaseMQ
    {
        private $routes = [&#39;hello&#39;,&#39;word&#39;]; //路由key
    
        /**
         * ProductMQ constructor.
         * @throws \AMQPConnectionException
         */
        public function __construct()
        {
           parent::__construct();
        }
    
        /** 只控制发送成功 不接受消费者是否收到
         * @throws \AMQPChannelException
         * @throws \AMQPConnectionException
         * @throws \AMQPExchangeException
         */
        public function run()
        {
            //频道
            $channel = $this->channel();
            //创建交换机对象
            $ex = $this-&gt;exchange();
            //消息内容
            $message = 'product message '.rand(1,99999);
            //开始事务
            $channel-&gt;startTransaction();
            $sendEd = true ;
            foreach ($this-&gt;routes as $route) {
                $sendEd = $ex-&gt;publish($message, $route) ;
                echo "Send Message:".$sendEd."\n";
            }
            if(!$sendEd) {
                $channel-&gt;rollbackTransaction();
            }
            $channel-&gt;commitTransaction(); //提交事务
            $this-&gt;close();
            die ;
        }
    }
    try{
        (new ProductMQ())-&gt;run();
    }catch (\Exception $exception){
        var_dump($exception-&gt;getMessage()) ;
    }
登录后复制
ConsumerMQ.php
    <?php     //消费者 C
    namespace MyObjSummary\rabbitMQ;
    require &#39;BaseMQ.php&#39;;
    class ConsumerMQ extends BaseMQ
    {
        private  $q_name = &#39;hello&#39;; //队列名
        private  $route  = &#39;hello&#39;; //路由key
    
        /**
         * ConsumerMQ constructor.
         * @throws \AMQPConnectionException
         */
        public function __construct()
        {
            parent::__construct();
        }
    
        /** 接受消息 如果终止 重连时会有消息
         * @throws \AMQPChannelException
         * @throws \AMQPConnectionException
         * @throws \AMQPExchangeException
         * @throws \AMQPQueueException
         */
        public function run()
        {
    
            //创建交换机
            $ex = $this->exchange();
            $ex-&gt;setType(AMQP_EX_TYPE_DIRECT); //direct类型
            $ex-&gt;setFlags(AMQP_DURABLE); //持久化
            //echo "Exchange Status:".$ex-&gt;declare()."\n";
    
            //创建队列
            $q = $this-&gt;queue();
            //var_dump($q-&gt;declare());exit();
            $q-&gt;setName($this-&gt;q_name);
            $q-&gt;setFlags(AMQP_DURABLE); //持久化
            //echo "Message Total:".$q-&gt;declareQueue()."\n";
    
            //绑定交换机与队列,并指定路由键
            echo 'Queue Bind: '.$q-&gt;bind($this-&gt;exchange, $this-&gt;route)."\n";
    
            //阻塞模式接收消息
            echo "Message:\n";
            while(True){
                $q-&gt;consume(function ($envelope,$queue){
                    $msg = $envelope-&gt;getBody();
                    echo $msg."\n"; //处理消息
                    $queue-&gt;ack($envelope-&gt;getDeliveryTag()); //手动发送ACK应答
                });
                //$q-&gt;consume('processMessage', AMQP_AUTOACK); //自动ACK应答
            }
            $this-&gt;close();
        }
    }
    try{
        (new ConsumerMQ)-&gt;run();
    }catch (\Exception $exception){
        var_dump($exception-&gt;getMessage()) ;
    }
登录后复制

以上就是PHP和RabbitMQ实现消息队列的完整代码的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:segmentfault网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
关于CSS思维导图的课件在哪? 课件
凡人来自于2024-04-16 10:10:18
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号