nizsheanez/yii2-json-rpc
最新稳定版本:v1.1.8
Composer 安装命令:
composer require nizsheanez/yii2-json-rpc
包简介
A lightweight JsonRpc Server and Client for PHP
README 文档
README
JsonRpc Server and Client for Yii2
##Usage Server
- Install with Composer
"require": { "nizsheanez/yii2-json-rpc": "1.*", }, php composer.phar update
- Add action to controller
public function actions() { return array( 'index' => array( 'class' => \nizsheanez\jsonRpc\Action::class, ), ); } public function sum($a, $b) { return $a + $b; }
- All methods of controller now available as JsonRpc methods, for example see method
sum:
##Usage Client
$client = new \nizsheanez\JsonRpc\Client('http://url/of/webservice'); $response = $client->sum(2, 3); echo $response;
- Enjoy!
统计信息
- 总下载量: 33.66k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2013-09-12