Skip to content

Instantly share code, notes, and snippets.

@saeidw
Created May 20, 2015 14:10
Show Gist options
  • Save saeidw/f3bf911b411205a4f834 to your computer and use it in GitHub Desktop.
Save saeidw/f3bf911b411205a4f834 to your computer and use it in GitHub Desktop.
Multiple client objects reading from same socket
<?php
$socket1 = new \Hoa\Socket\Client('tcp://172.16.3.76:5900');
$socket1->connect();
echo $socket1->read(6), PHP_EOL;
$socket2 = new \Hoa\Socket\Client('tcp://172.16.3.76:5900');
$socket2->connect();
echo $socket2->read(6), PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment