PHP code example of mikemadisonweb / yii2-rabbitmq
1. Go to this page and download the library: Download mikemadisonweb/yii2-rabbitmq 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/ */
mikemadisonweb / yii2-rabbitmq example snippets
return [
// should be in common.php
'components' => [
// ...
'rabbitmq' => [
'class' => \mikemadisonweb\rabbitmq\Configuration::class,
'connections' => [
[
// You can pass these parameters as a single `url` option: https://www.rabbitmq.com/uri-spec.html
'host' => 'YOUR_HOSTNAME',
'port' => '5672',
'user' => 'YOUR_USERNAME',
'password' => 'YOUR_PASSWORD',
'vhost' => '/',
]
// When multiple connections is used you need to specify a `name` option for each one and define them in producer and consumer configuration blocks
],
'exchanges' => [
[
'name' => 'YOUR_EXCHANGE_NAME',
'type' => 'direct'
// Refer to Defaults section for all possible options
],
],
'queues' => [
[
'name' => 'YOUR_QUEUE_NAME',
// Queue can be configured here the way you want it:
//'durable' => true,
//'auto_delete' => false,
],
[
'name' => 'YOUR_ANOTHER_QUEUE_NAME',
],
],
'bindings' => [
[
'queue' => 'YOUR_QUEUE_NAME',
'exchange' => 'YOUR_EXCHANGE_NAME',
'routing_keys' => ['YOUR_ROUTING_KEY'],
],
],
'producers' => [
[
'name' => 'YOUR_PRODUCER_NAME',
],
],
'consumers' => [
[
'name' => 'YOUR_CONSUMER_NAME',
// Every consumer should define one or more callbacks for corresponding queues
'callbacks' => [
// queue name => callback class name
'YOUR_QUEUE_NAME' => \path\to\YourConsumer::class,
],
],
],
],
],
];
namespace components\rabbitmq;
use mikemadisonweb\rabbitmq\components\ConsumerInterface;
use PhpAmqpLib\Message\AMQPMessage;
class YourConsumer implements ConsumerInterface
{
/**
* @param AMQPMessage $msg
* @return bool
*/
public function execute(AMQPMessage $msg)
{
$data = $msg->body;
// Apply your business logic here
return ConsumerInterface::MSG_ACK;
}
}