PHP code example of etopian / rabbitmq-management-api
1. Go to this page and download the library: Download etopian/rabbitmq-management-api library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
etopian / rabbitmq-management-api example snippets
use RabbitMq\ManagementApi\Client;
>queues()->get('/', 'sample-messages-queue');
$response = $client->exchanges()->publish('/', 'sample-messages', array(
'properties' => array(),
'routing_key' => '',
'payload' => 'This is a test',
'payload_encoding' => 'string'
));
if ($response['routed']) {
print 'Message delivered';
}