pprt / swoft-jsonrpc-request
There is no license information available for the latest version (dev-master) of this package.
swoft客户端调用hyperf-jsonrpc服务
dev-master / 1.0.x-dev
2020-11-25 09:58 UTC
Requires
- guzzlehttp/guzzle: ~7.0.0
This package is auto-updated.
Last update: 2025-03-25 19:43:13 UTC
README
description : swoft客户端调用hyperf-jsonrpc服务
.env 配置信息
# hyperf service
HYPERF_SERVICE_URI=tcp://127.0.0.1:9503
调用方法
//引入命名空间
use JsonRpcRequest\RequestRpc;
$client = new RequestRpc();
/**
* $name consul服务名(或者hypefjsonrpc服务名) e.g. 'CalculatorService'
* $method 方法名称 e.g. '/calculator/add'
* $params e.g. [1,2]
*/
$result = $client->send($name,$method, $params);