Skip to content

Instantly share code, notes, and snippets.

@jgupta
Created August 9, 2012 21:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgupta/3308329 to your computer and use it in GitHub Desktop.
Save jgupta/3308329 to your computer and use it in GitHub Desktop.
pub.php
<?php
$context = new ZMQContext(1);
// Socket to talk to clients
$responder = new ZMQSocket($context, ZMQ::SOCKET_PUB);
$responder->bind("tcp://127.0.0.1:5555");
while(true) {
$responder->send("hello there");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment