Created
August 24, 2021 11:08
-
-
Save vasilvestre/46e0b3db89650587f7a6cf3fcf66f0b8 to your computer and use it in GitHub Desktop.
PHP AMQP exemple
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$url = parse_url(getenv('CLOUDAMQP_URL')); | |
$vhost = substr($url['path'], 1); | |
$credentials = [ | |
'host' => $url['host'], | |
'vhost' => $vhost, | |
'login' => $url['user'], | |
'password' => $url['pass'], | |
'port' => 5672 | |
]; | |
if ($url['scheme'] === "amqps") { | |
$credentials = array_merge($credentials, array( | |
'port' => 5671, | |
'cacert' => '/etc/ssl/certs/ca-certificates.crt', | |
)); | |
} | |
$conn = new AMQPConnection($credentials); | |
$conn->connect(); | |
$ch = new AMQPChannel($conn); | |
$ex = new AMQPExchange($ch); | |
$exchange = 'amq.fanout'; | |
$ex->setName($exchange); | |
$ex->setType(AMQP_EX_TYPE_DIRECT); | |
$ex->setFlags(AMQP_DURABLE); | |
$ex->declareExchange(); | |
$q = new AMQPQueue($ch); | |
$q->setName('basic_get_queue'); | |
$q->setFlags(AMQP_DURABLE); | |
$q->declareQueue(); | |
$ex->bind($exchange); | |
$ex->publish('message', 'routing.key', AMQP_NOPARAM, ['content_type' => 'text/plain', 'delivery_mode' => 2]); | |
$conn->disconnect(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment