Created
November 14, 2013 05:10
-
-
Save norganna/7461738 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Weather update client | |
* Connects SUB socket to tcp://localhost:5556 | |
* Collects weather updates and finds avg temp in zipcode | |
* @author Ian Barber <ian(dot)barber(at)gmail(dot)com> | |
*/ | |
$context = new ZMQContext(); | |
// Socket to talk to server | |
echo "Collecting updates from weather server…", PHP_EOL; | |
$subscriber = new ZMQSocket($context, ZMQ::SOCKET_SUB); | |
$subscriber->connect("tcp://localhost:5556"); | |
// Subscribe to zipcode, default is NYC, 10001 | |
$subscriber->setSockOpt(ZMQ::SOCKOPT_SUBSCRIBE, '10001 '); | |
$subscriber->setSockOpt(ZMQ::SOCKOPT_SUBSCRIBE, '10002 '); | |
while (true) { | |
$string = $subscriber->recv(); | |
print "Got $string\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment