当前位置:首页 > 技术笔记 > 正文内容

PHP+RabbitMQ实现消息队列(代码全篇)

YoungPawel5年前 (2021-03-26)技术笔记2899
  • 前言

    先安装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 [        //配置
        'host' => [            'host' => '127.0.0.1',            'port' => '5672',            'login' => 'guest',            'password' => 'guest',            'vhost'=>'/',
        ],        //交换机
        'exchange'=>'word',        //路由
        'routes' => [],
    ];
  • 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 'config.php' ;            if(!$conf)                throw new \AMQPConnectionException('config error!');            $this->conf     = $conf['host'] ;            $this->exchange = $conf['exchange'] ;            $this->AMQPConnection = new \AMQPConnection($this->conf);            if (!$this->AMQPConnection->connect())                throw new \AMQPConnectionException("Cannot connect to the broker!\n");
        }    
        /**
         * close link
         */
        public function close()        {            $this->AMQPConnection->disconnect();
        }    
        /** Channel
         * @return \AMQPChannel
         * @throws \AMQPConnectionException
         */
        public function channel()        {            if(!$this->AMQPChannel) {                $this->AMQPChannel =  new \AMQPChannel($this->AMQPConnection);
            }            return $this->AMQPChannel;
        }    
        /** Exchange
         * @return \AMQPExchange
         * @throws \AMQPConnectionException
         * @throws \AMQPExchangeException
         */
        public function exchange()        {            if(!$this->AMQPExchange) {                $this->AMQPExchange = new \AMQPExchange($this->channel());                $this->AMQPExchange->setName($this->exchange);
            }            return $this->AMQPExchange ;
        }    
        /** queue
         * @return \AMQPQueue
         * @throws \AMQPConnectionException
         * @throws \AMQPQueueException
         */
        public function queue()        {            if(!$this->AMQPQueue) {                $this->AMQPQueue = new \AMQPQueue($this->channel());
            }            return $this->AMQPQueue ;
        }    
        /** Envelope
         * @return \AMQPEnvelope
         */
        public function envelope()        {            if(!$this->AMQPEnvelope) {                $this->AMQPEnvelope = new \AMQPEnvelope();
            }            return $this->AMQPEnvelope;
        }
    }
  • ProductMQ.php

    <?php
    //生产者 P
    namespace MyObjSummary\rabbitMQ;    require 'BaseMQ.php';    class ProductMQ extends BaseMQ
    {        private $routes = ['hello','word']; //路由key
    
        /**
         * ProductMQ constructor.
         * @throws \AMQPConnectionException
         */
        public function __construct()        {           parent::__construct();
        }    
        /** 只控制发送成功 不接受消费者是否收到
         * @throws \AMQPChannelException
         * @throws \AMQPConnectionException
         * @throws \AMQPExchangeException
         */
        public function run()        {            //频道
            $channel = $this->channel();            //创建交换机对象
            $ex = $this->exchange();            //消息内容
            $message = 'product message '.rand(1,99999);            //开始事务
            $channel->startTransaction();            $sendEd = true ;            foreach ($this->routes as $route) {                $sendEd = $ex->publish($message, $route) ;                echo "Send Message:".$sendEd."\n";
            }            if(!$sendEd) {                $channel->rollbackTransaction();
            }            $channel->commitTransaction(); //提交事务
            $this->close();            die ;
        }
    }    try{
        (new ProductMQ())->run();
    }catch (\Exception $exception){
        var_dump($exception->getMessage()) ;
    }
  • ConsumerMQ.php

    <?php
    //消费者 C
    namespace MyObjSummary\rabbitMQ;    require 'BaseMQ.php';    class ConsumerMQ extends BaseMQ
    {        private  $q_name = 'hello'; //队列名
        private  $route  = 'hello'; //路由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->setType(AMQP_EX_TYPE_DIRECT); //direct类型
            $ex->setFlags(AMQP_DURABLE); //持久化
            //echo "Exchange Status:".$ex->declare()."\n";
    
            //创建队列
            $q = $this->queue();            //var_dump($q->declare());exit();
            $q->setName($this->q_name);            $q->setFlags(AMQP_DURABLE); //持久化
            //echo "Message Total:".$q->declareQueue()."\n";
    
            //绑定交换机与队列,并指定路由键
            echo 'Queue Bind: '.$q->bind($this->exchange, $this->route)."\n";    
            //阻塞模式接收消息
            echo "Message:\n";            while(True){                $q->consume(function ($envelope,$queue){                    $msg = $envelope->getBody();                    echo $msg."\n"; //处理消息
                    $queue->ack($envelope->getDeliveryTag()); //手动发送ACK应答
                });                //$q->consume('processMessage', AMQP_AUTOACK); //自动ACK应答
            }            $this->close();
        }
    }    try{
        (new ConsumerMQ)->run();
    }catch (\Exception $exception){
        var_dump($exception->getMessage()) ;
    }

“PHP+RabbitMQ实现消息队列(代码全篇)” 的相关文章

PHP生成PDF完美支持中文,解决TCPDF乱码

PHP生成PDF格式文件以TCPDF为基础,TCPDF是一个用于快速生成PDF文件的PHP5函数包。TCPDF基于FPDF进行扩展和改进。支持UTF-8,Unicode,HTML和 XHTML。在基于PHP开发的Web应用中,使用它来输出PDF文件是绝佳的选择。但毕竟这款开源软件是外国人开...

zend org.eclipse.osgi 错误处理办法

如果你在汉化,或者安装包的时候发生以下错误:log文件中提示:!ENTRY org.eclipse.osgi 4 0 2015-07-11 01:37:53.684!MESSAGE 应用程序错误!STACK 1解决办法:删除eclipse/configuration 目录下的 org.eclipse...

利用phpExcel实现Excel数据的导入导出

很多文章都有提到关于使用phpExcel实现Excel数据的导入导出,大部分文章都差不多,或者就是转载的,都会出现一些问题,下面是本人研究phpExcel的使用例程总结出来的使用方法,接下来直接进入正题。首先先说一下,本人的这段例程是使用在Thinkphp的开发框架上,要是使用在其他框架也是同样的方...

MS-SQLSERVER数据库SUSPECT状态如何解决

   如何重置数据库Suppect(置疑)状态一、出现这种情况的原因如果在日常运行当中,数据库的文件或日志增长方式设为以下两种模式:1、文件不自动增长此种状态下,如果数据库中的数据或日志增长到设定的文件大小时,继续添加数据时就没有足够的空间时,MS SQL SERVER将把数据库...