<?php /** * Simple JSON-RPC interface. */ namespace org; class JosnRpcClient{ protected $host; protected $port; protected $version; protected $debug; protected $id = 0; /** * 初始化数据 * @param $host 主机IP * @param $port 端口 * @param $debug debug模式(true or…