sdrsdr / php-zmq

ZeroMQ for PHP

Home Page:http://pecl.php.net/zmq

Repository from Github https://github.comsdrsdr/php-zmqRepository from Github https://github.comsdrsdr/php-zmq

PHP bindings for 0MQ. The documentation is available at http://php.net/zmq

Build Status

The API is roughly as follows:

<?php

/* Create new queue object */
$queue = new ZMQSocket(new ZMQContext(), ZMQ::SOCKET_REQ, "MySock1");

/* Connect to an endpoint */
$queue->connect("tcp://127.0.0.1:5555");

/* send and receive */
var_dump($queue->send("hello there, using socket 1")->recv());

?>

For installation instructions see http://pecl.php.net/zmq

About

ZeroMQ for PHP

http://pecl.php.net/zmq

License:Other


Languages

Language:C 79.7%Language:PHP 14.8%Language:XSLT 4.7%Language:Shell 0.7%