shogochiai / php-zmq
该软件包最新版本(dev-master)没有提供许可信息。
php的Zero MQ库
dev-master
2015-06-16 02:11 UTC
This package is not auto-updated.
Last update: 2024-09-18 09:11:47 UTC
README
PHP的0MQ绑定。文档可在https://php.ac.cn/zmq找到
API大致如下
<?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());
?>
安装说明请参考http://pecl.php.net/zmq