box-o-sand/sylvilagus/php/rabbitmqctl-examples.php
Dan Buch 52a7c23bb1 Working on administration-related php exercise
which apparently does not work *at all* when the user/pass combo is
wrong or has characters that explode or whatever.
2012-11-17 21:12:46 -05:00

33 lines
814 B
PHP

<?php
define('AMQP_DEBUG', true);
require_once(__DIR__ . '/php-amqplib/vendor/autoload.php');
use PhpAmqpLib\Connection\AMQPConnection;
use PhpAmqpLib\Message\AMQPMessage;
$uri = parse_url(getenv('SYLVILAGUS_AMQP_URI'));
$conn = new AMQPConnection(
$uri['host'],
$uri['port'],
$uri['user'],
$uri['pass'],
$uri['path']
);
$channel = $conn->channel();
$channel->exchange_declare('logs-exchange', 'topic', false, true, false);
$channel->queue_declare('msg-inbox-errors', false, true, false, false);
$channel->queue_declare('msg-inbox-logs', false, true, false, false);
$channel->queue_declare('all-logs', false, true, false, false);
$channel->queue_bind('msg-inbox-errors', 'logs-exchange', 'error.msg-inbox');
$channel->queue_bind('msg-inbox-logs', 'logs-exchange', '*.msg-inbox');
?>