jsonrpc:JsonRpc 2.0 PHP 规范

时间:2024-06-29 07:06:24
【文件属性】:

文件名称:jsonrpc:JsonRpc 2.0 PHP 规范

文件大小:22KB

文件格式:ZIP

更新时间:2024-06-29 07:06:24

PHP

JSON-RPC 2.0 规范 是一种无状态、轻量级的远程过程调用 (RPC) 协议。 请求对象 通过向服务器发送来表示 rpc 调用。 // client $ request = new \ JsonRpc \ Spec \ Request ( 'subtract' , [ 42 , 23 ], 1 ); // server $ result = call_user_func_array ( $ request -> getMethod (), $ request -> getParams ()); 通知 是一个没有“id”成员的请求对象。 $ request1 = new \ JsonRpc \ Spec \ Request ( 'update' , [ 1 , 2 , 3 , 4 , 5 ]); $ request2 = new \ JsonRpc \ Spec \ Requ


【文件预览】:
jsonrpc-master
----composer.json(664B)
----.travis.yml(434B)
----.scrutinizer.yml(351B)
----tests()
--------Spec()
--------ObjectManagerTest.php(8KB)
--------Utils()
----LICENSE(1KB)
----src()
--------OutOfBoundsException.php(333B)
--------ObjectManager.php(5KB)
--------ObjectManagerInterface.php(2KB)
--------TransportInterface.php(374B)
--------Spec()
--------Utils()
----.gitignore(80B)
----phpunit.xml.dist(1KB)
----README.md(4KB)

网友评论