php-zmq icon indicating copy to clipboard operation
php-zmq copied to clipboard

ZeroMQ for PHP

Results 38 php-zmq issues
Sort by recently updated
recently updated
newest added
trafficstars

I'v been trying to install ZMQ on macOS with PHP 8.2.12 on my M1 but I am met with this: ``` pecl install zmq-beta downloading zmq-1.1.3.tgz ... Starting to download...

Hi. Anyone has / use and can share some PHP 8.1.3 windows builds? Thanks.

I have the following code: **socket.php:** ``` $loop = React\EventLoop\Factory::create(); $pusher = new \Pusher; $context = new React\ZMQ\Context($loop); $pull = $context->getSocket(ZMQ::SOCKET_PULL); $pull->bind('tcp://0.0.0.0:5555'); $pull->on('message', array($pusher, 'someFunction')); //following code made possible by...

I used to be able to install `php8-pecl-zmq` from alpine edge/testing repository but the build now fails with "php8-pecl-zmq (no such package):". It seems that only one architecture remains; `riscv64`....

Build can be fix with pr #190 but is not enough as we encounter segfault during test suite ``` ===================================================================== PHP : /opt/remi/php73/root/usr/bin/php PHP_SAPI : cli PHP_VERSION : 7.3.0RC3 ZEND_VERSION:...

- see https://github.com/php-amqp/php-amqp/issues/390 - https://github.com/zeromq/php-zmq/issues/223

2 parameters are required when the method only takes 1 https://github.com/zeromq/php-zmq/blob/84f072064dd8aedaf1ff883c602c5e34f3876897/zmq.c#L2489-L2491

environment - ubuntu20.04 in docker - php8.0.3 - libsodium-1.0.18 - zeromq 4.1.4 ``` # pecl install zmq-beta WARNING: channel "pecl.php.net" has updated its protocols, use "pecl channel-update pecl.php.net" to update...

Hello, I've been away from the ZMQ world for a while, and my newest project has re-sparked my interest in php-zmq. When I last was around, php-zmq had basically been...