在使用 rabbitmq 之前,你要安装好 rabbitmq 服务,具体安装方法可以参考 windows下安装rabbitmq
1、安装扩展
进入tp5 更目录下,输入命令安装:
composer require php-amqplib/php-amqplib
2、自定义命令
tp5 的自定义命令,这里也简单说下。
第一步:
创建命令类文件,新建 application/api/command/test.php。
<?php namespace app\api\command; use think\console\command; use think\console\input; use think\console\output; /** * 自定义命令测试 */ class test extends command { /** * 配置 */ protected function configure() { // 设置命令的名称和描述 $this->setname('test')->setdescription('这是一个测试命令'); } /** * 执行 */ protected function execute(input $input, output $output) { $output->writeln("测试命令"); } }
这个文件定义了一个叫test的命令,备注为 这是一个测试命令,执行命令会输出:test command。
第二步:
配置 command.php文件,在 application/command.php文件中添加命令。
<?php return [ 'app\api\command\test', ];
第三步:
测试命令,在项目根目录下输入命令:
php think test
回车运行之后输出:
test command
到这里,自定义命令就结束了,test命令就自定义成功了。
3、rabbitmq服务端
下来我们自定义 rabbitmq 启动命令,守护进程运行,启动 rabbirmq 服务端接收消息。
在 application/api/command 目录下,新建 ramq.php 文件,在执行命令的方法中,调用 rabbitmq 启动守护进程方法即可。
<?php namespace app\api\command; use phpamqplib\connection\amqpstreamconnection; use think\console\command; use think\console\input; use think\console\output; /** * rabbitmq 启动命令 */ class ramq extends command { protected $consumertag = 'customer'; protected $exchange = 'xcuser'; protected $queue = 'xcmsg'; protected function configure() { $this->setname('ramq')->setdescription('rabbitmq'); } protected function execute(input $input, output $output) { $output->writeln("消息队列开始"); $this->start(); // 指令输出 $output->writeln('消费队列结束'); } /** * 关闭 */ function shutdown($channel, $connection) { $channel->close(); $connection->close(); } /** * 回调处理信息 */ function process_message($message) { if ($message->body !== 'quit') { echo $message->body; } //手动应答 $message->delivery_info['channel']->basic_ack($message->delivery_info['delivery_tag']); if ($message->body === 'quit') { $message->delivery_info['channel']->basic_cancel($message->delivery_info['consumer_tag']); } } /** * 启动 守护进程运行 */ public function start() { $host = '127.0.0.1'; $port = 5672; $user = 'guest'; $pwd = 'guest'; $vhost = '/'; $connection = new amqpstreamconnection($host, $port, $user, $pwd, $vhost); $channel = $connection->channel(); $channel->queue_declare($this->queue, false, true, false, false); $channel->exchange_declare($this->exchange, 'direct', false, true, false); $channel->queue_bind($this->queue, $this->exchange); $channel->basic_consume($this->queue, $this->consumertag, false, false, false, false, array($this, 'process_message')); register_shutdown_function(array($this, 'shutdown'), $channel, $connection); while (count($channel->callbacks)) { $channel->wait(); } } }
在application/command.php文件中,添加rabbitmq自定义命令。
return [ 'app\api\command\ramq',// rabbitmq ];
4、发送端
最后,我们再写发送消息的控制器,实现消息队列,具体代码如下:
<?php namespace app\api\controller; use phpamqplib\connection\amqpstreamconnection; use phpamqplib\message\amqpmessage; use think\controller; /** * 发送端 */ class messagequeue extends controller { const exchange = 'xcuser'; const queue = 'xcmsg'; /** * 发送消息 */ public function pushmessage($data) { $host = '127.0.0.1'; $port = 5672; $user = 'guest'; $pwd = 'guest'; $vhost = '/'; $connection = new amqpstreamconnection($host, $port, $user, $pwd, $vhost); $channel = $connection->channel(); $channel->exchange_declare(self::exchange, 'direct', false, true, false); $channel->queue_declare(self::queue, false, true, false, false); $channel->queue_bind(self::queue, self::exchange); $messagebody = $data; $message = new amqpmessage($messagebody, array('content_type' => 'text/plain', 'delivery_mode' => amqpmessage::delivery_mode_persistent)); $channel->basic_publish($message, self::exchange); $channel->close(); $connection->close(); echo 'ok'; } /** * 执行 */ public function index() { $data = json_encode(['msg' => '测试数据', 'id' => '15']); $this->pushmessage($data); } }
5、验证
先执行自定义命令,启动 rabbitmq 守护进程。在项目更目录下打开命令行,输入下面命令:
php think ramq
然后在浏览器访问发送信息的方法,http://你的域名/api/message/index,你发送一次消息,在命令行就会输出一条消息。这样我们就用 rabbitmq 实现了一个简单的消息队列。
到此这篇关于tp5使用rabbitmq实现消息队列的项目实践的文章就介绍到这了,更多相关tp5 rabbitmq消息队列内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!
发表评论