Skip to content
This repository was archived by the owner on Sep 29, 2022. It is now read-only.
/ php-zmq Public archive
forked from zeromq/php-zmq

ZeroMQ for PHP. This is a backup for the teaching environment for POO in MIW.

License

Notifications You must be signed in to change notification settings

jqrg/php-zmq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

For developer instructions see DEVELOPERS.md

About

ZeroMQ for PHP. This is a backup for the teaching environment for POO in MIW.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 82.6%
  • PHP 14.7%
  • Shell 1.8%
  • M4 0.9%