承接 nizsheanez/yii2-json-rpc 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

  1. Install with Composer
"require": {
    "nizsheanez/yii2-json-rpc": "1.*",
},

php composer.phar update
  1. Add action to controller
public function actions()
{
    return array(
        'index' => array(
            'class' => \nizsheanez\jsonRpc\Action::class,
        ),
    );
}

public function sum($a, $b) {
	return $a + $b;
}
  1. 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;
  1. Enjoy!

统计信息

  • 总下载量: 33.66k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 20
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 18
  • Watchers: 3
  • Forks: 20
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2013-09-12