Skip to content

Instantly share code, notes, and snippets.

@totoCZ
totoCZ / gist:4430857313539b2585a5175ca3c1ed81
Last active August 8, 2017 10:50
final php socket client for golang json rpc server
<?php
$timeout = 1;
$chunkSize = 4;
function callRPC($host, $targets, $timeout, $chunkSize) {
$sockets = [];
$errno = 0;
$errstr = '';
// Send.
$s = stream_socket_client($host, $errno, $errstr, $timeout);
if (!$s) {