php 中使用Rabbitmq实现实现消息发送和接收
php 中使用Rabbitmq实现实现消息发送和接收1,建立一个send.php文件用来发送消息2,建立一个 receive.php 文件用来接收消息代码如下send.php<?php/*** 发送消息 */$exchangeName = 'demo';$routeKey = 'hello';$message = 'Hello World!';// 建立TCP连接$connection = new AMQPConnection([ 'host' =>