Has anyone compiled the rabbitmq / amqp library for php 5.2.x on x64 windows

I am trying to post messages to RabbitMQ from a php (5.2.x) script on my Windows X64 dev machine.

The problem is that I did not find the dll extension for php. My colleague is actually trying to build it (see How do you compile the PHP extension for Windows using cygwin / mingw? ), But without success: (.

Does anyone know where I can find the current / current RabbitMQ dll extension for php (5.2.x)? Or, if someone has the experience to do it right and quickly, it would certainly be very helpful.

+6
php rabbitmq amqp php-extension
source share
1 answer

Why not use php-amqplib ? Technically, it is not necessary that this be written as a low-level extension, Amqp is a TCP protocol, it can be implemented in PHP.

+1
source share

All Articles