$func, 'args' => $args ]); $connection = fsockopen($_ENV['MULTI_INTERNAL_HOST'], $_ENV['MULTI_INTERNAL_PORT']); fwrite($connection, $message); $response = ''; while (!feof($connection)) { $response .= fgets($connection); } fclose($connection); return json_decode($response, true); } }