![]() As of php-amqplib version 2.12.0 (see PR: https://github.com/php-amqplib/php-amqplib/pull/799) we should use method `ack()` on the message directly. Asked by @michaelklishin in https://github.com/rabbitmq/rabbitmq-website/pull/1113 |
||
---|---|---|
.. | ||
.gitignore | ||
composer.json | ||
emit_log_direct.php | ||
emit_log_topic.php | ||
emit_log.php | ||
new_task.php | ||
README.md | ||
receive_logs_direct.php | ||
receive_logs_topic.php | ||
receive_logs.php | ||
receive.php | ||
rpc_client.php | ||
rpc_server.php | ||
send.php | ||
worker.php |
PHP code for RabbitMQ tutorials
Here you can find PHP code examples from RabbitMQ tutorials.
To successfully use the examples you will need a running RabbitMQ server.
Requirements
PHP 5.3+
You need PHP 5.3
and php-amqplib
. To get these
dependencies on Ubuntu type:
sudo apt-get install git-core php5-cli
Composer
Then install Composer per instructions on their site.
Client Library
Then you can install php-amqplib
using Composer.
To do that install Composer and add it to your path, then run the following command inside this project folder:
composer.phar install
Or you can require it to the existing project using a command:
composer.phar require php-amqplib/php-amqplib
Code
php send.php
php receive.php
php new_task.php "A very hard task which takes two seconds.."
php worker.php
Tutorial three: Publish/Subscribe
php receive_logs.php
php emit_log.php "info: This is the log message"
php receive_logs_direct.php info
php emit_log_direct.php info "The message"
php receive_logs_topic.php "*.rabbit"
php emit_log_topic.php red.rabbit Hello
php rpc_server.php
php rpc_client.php