PHP code example of starcode-krasnodar / yii2-amqp

1. Go to this page and download the library: Download starcode-krasnodar/yii2-amqp 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/ */

    

starcode-krasnodar / yii2-amqp example snippets


[
    'components' => [
        'amqp' => [
            'class' => 'starcode\amqp\components\Connection',
            'host' => 'localhost',
            'user' => 'guest',
            'password' => 'guest',
            'connectionOptions' => [
                'vhost' => '/',
            ],
            
            'queuesConfig' => [
                'email' => [
                    'queue' => 'email',
                    'durable' => true,
                    'auto_delete' => false,
                ],
                'logs' => [
                    'queue' => 'logs',
                    'durable' => true,
                    'auto_delete' => false,
                ],
            ],
        ],
    ],
];

// get queue object
$queue = Yii::$app->get('amqp')->getQueue('email');

// create message object
$message = new Message('my message', ['delivery_mode' => 2]);

// publish message
$queue->publish($message);

// get queue object
$queue = Yii::$app->get('amqp')->getQueue('email');

// callback listener function
$callback = function($message) {
    echo $message->body;
    
    // acknowledge message
    $channel = $msg->delivery_info['channel'];
    $channel->basic_ack($msg->delivery_info['delivery_tag']);
};

$queue->consume([
    'callback' => $callback,
]);

$channel = $queue->getChannel();
while (count($channel->callbacks)) {
    $channel->wait();
}