1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
<?php
require_once 'PhpAmqpLib/autoload.php';
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Exchange\AMQPExchangeType;
use PhpAmqpLib\Message\AMQPMessage;
$connection = new AMQPStreamConnection('localhost', 5672, 'guest', 'guest');
$channel = $connection->channel();
// declare exchange but don`t bind any queue
$channel->exchange_declare('hidden_exchange', AMQPExchangeType::TOPIC);
$message = new AMQPMessage('Hello World!');
echo ' [x] Sent non-mandatory ...';
$channel->basic_publish(
$message,
'hidden_exchange',
'rkey'
);
echo " done.\n";
$wait = true;
$returnListener = function (
$replyCode,
$replyText,
$exchange,
$routingKey,
$message
) use ($wait) {
$GLOBALS['wait'] = false;
echo 'return: ',
$replyCode, "\n",
$replyText, "\n",
$exchange, "\n",
$routingKey, "\n",
$message->body, "\n";
};
$channel->set_return_listener($returnListener);
echo ' [x] Sent mandatory ... ';
$channel->basic_publish(
$message,
'hidden_exchange',
'rkey',
true
);
echo " done.\n";
while ($wait) {
$channel->wait();
}
$channel->close();
$connection->close();
|