itspecial / websocket_client
WebSocket client
This package's canonical repository appears to be gone and the package has been frozen as a result.
1.1.1
2015-05-08 16:00 UTC
Requires (Dev)
- phpunit/phpunit: 4.1.*
- phpunit/phpunit-selenium: 1.3.3
- satooshi/php-coveralls: dev-master
This package is not auto-updated.
Last update: 2022-08-23 23:38:24 UTC
README
use WebSocket\Client;
$client = new Client("ws://127.0.0.1:8000");
$message = ['to' => 'client1', 'message' => 'Message for client 2'];
$json = json_encode($message);
$client->send($json);