php实现的一个简单json rpc框架实例


Posted in PHP onMarch 30, 2015

json rpc 是一种以json为消息格式的远程调用服务,它是一套允许运行在不同操作系统、不同环境的程序实现基于Internet过程调用的规范和一系列的实现。这种远程过程调用可以使用http作为传输协议,也可以使用其它传输协议,传输的内容是json消息体。

下面我们code一套基于php的rpc框架,此框架中包含rpc的服务端server,和应用端client;

(一)PHP服务端RPCserver jsonRPCServer.php

class jsonRPCServer {

    /**

     *处理一个request类,这个类中绑定了一些请求参数

     * @param object $object

     * @return boolean

     */

    public static function handle($object) {

       // 判断是否是一个rpc json请求

        if ($_SERVER['REQUEST_METHOD'] != 'POST' || empty($_SERVER['CONTENT_TYPE'])

            ||$_SERVER['CONTENT_TYPE'] != 'application/json') {

            return false;

        }

        // reads the input data

        $request = json_decode(file_get_contents('php://input'),true);

        // 执行请求类中的接口

        try {

            if ($result = @call_user_func_array(array($object,$request['method']),$request['params'])) {

                $response = array ( 'id'=> $request['id'],'result'=> $result,'error'=> NULL );

            } else {

                $response = array ( 'id'=> $request['id'], 'result'=> NULL,

                                        'error' => 'unknown method or incorrect parameters' );}

        } catch (Exception $e) {

            $response = array ('id' => $request['id'],'result' => NULL, 'error' =>$e->getMessage());

        }

       // json 格式输出

        if (!empty($request['id'])) { // notifications don't want response

            header('content-type: text/javascript');

            echo json_encode($response);

        }

        return true;

    }

}

(二)Rpc客户端,jsonRPCClient.php

<?php

/*

 */

class jsonRPCClient {
    private $debug;

    private $url;

    // 请求id

    private $id;

    private $notification = false;

    /**

     * @param $url

     * @param bool $debug

     */

    public function __construct($url,$debug = false) {

        // server URL

        $this->url = $url;

        // proxy

        empty($proxy) ? $this->proxy = '' : $this->proxy = $proxy;

        // debug state

        empty($debug) ? $this->debug = false : $this->debug = true;

        // message id

        $this->id = 1;

    }
    /**

     *

     * @param boolean $notification

     */

    public function setRPCNotification($notification) {

        empty($notification) ? $this->notification = false  : $this->notification = true;

    }
    /**

     * @param $method

     * @param $params

     * @return bool

     * @throws Exception

     */

    public function __call($method,$params) {

        // 检验request信息

        if (!is_scalar($method)) {

            throw new Exception('Method name has no scalar value');

        }

        if (is_array($params)) {

            $params = array_values($params);

        } else {

            throw new Exception('Params must be given as array');

        }
        if ($this->notification) {

            $currentId = NULL;

        } else {

            $currentId = $this->id;

        }
       // 拼装成一个request请求

        $request = array(  'method' => $method,  'params' => $params,'id' => $currentId);

        $request = json_encode($request);

        $this->debug && $this->debug.='***** Request *****'."\n".$request."\n".'***** End Of request *****'."\n\n";

        $opts = array ('http' => array (

                                    'method'  => 'POST',

                                    'header'  => 'Content-type: application/json',

                                    'content' => $request

        ));

        //  关键几部

        $context  = stream_context_create($opts);

  if ( $result = file_get_contents($this->url, false, $context)) {

            $response = json_decode($result,true);

  } else {

   throw new Exception('Unable to connect to '.$this->url);

  }

        // 输出调试信息

        if ($this->debug) {

            echo nl2br(($this->debug));

        }

        // 检验response信息

        if (!$this->notification) {

            // check

            if ($response['id'] != $currentId) {

                throw new Exception('Incorrect response id (request id: '.$currentId.', response id: '.$response['id'].')');

            }

            if (!is_null($response['error'])) {

                throw new Exception('Request error: '.$response['error']);

            }

            return $response['result'];
        } else {

            return true;

        }

    }

}

?>

(三) 应用实例
(1)服务端 server.php

<?php

require_once 'jsonRPCServer.php';
// member 为测试类

require 'member.php';

// 服务端调用

$myExample = new member();

// 注入实例

jsonRPCServer::handle($myExample)

 or print 'no request';

?>

(2)测试类文件,member.php

class member{

    public function getName(){

        return 'hello word ' ;  // 返回字符串

    }

}

(3)客户端 client.php

require_once 'jsonRPCClient.php';
$url = 'http://localhost/rpc/server.php';

$myExample = new jsonRPCClient($url);
// 客户端调用

try {

 $name = $myExample->getName();

    echo $name ;

} catch (Exception $e) {

 echo nl2br($e->getMessage()).'<br />'."\n";

}
PHP 相关文章推荐
用PHP 4.2书写安全的脚本
Oct 09 PHP
基于php无限分类的深入理解
Jun 02 PHP
基于PHP对XML的操作详解
Jun 07 PHP
无刷新动态加载数据 滚动条加载适合评论等页面
Oct 16 PHP
php使用codebase生成随机数
Mar 25 PHP
php时间戳转换的示例
Mar 31 PHP
php获取Google机器人访问足迹的方法
Apr 15 PHP
php准确计算复活节日期的方法
Apr 18 PHP
php 读取文件夹下所有图片、文件的实例
Oct 17 PHP
PHP基于timestamp和nonce实现的防止重放攻击方案分析
Jul 26 PHP
laravel dingo API返回自定义错误信息的实例
Sep 29 PHP
PHP接口类(interface)的定义、特点和应用示例
May 18 PHP
php实现读取内存顺序号
Mar 29 #PHP
php实现插入排序
Mar 29 #PHP
php实现插入数组但不影响原有顺序的方法
Mar 27 #PHP
WordPress自定义时间显示格式
Mar 27 #PHP
在php和MySql中计算时间差的方法详解
Mar 27 #PHP
PHP连接access数据库
Mar 27 #PHP
使用新浪微博API的OAuth认证发布微博实例
Mar 27 #PHP
You might like
phpphp图片采集后按原路径保存图片示例
2014/02/18 PHP
PHP获取当前所在目录位置的方法
2014/11/26 PHP
PHP+MySQL删除操作实例
2015/01/21 PHP
php计算2个日期的差值函数分享
2015/02/02 PHP
Laravel手动分页实现方法详解
2016/10/09 PHP
php通过会话控制实现身份验证实例
2016/10/18 PHP
php禁用cookie后session设置方法分析
2016/10/19 PHP
nodejs文件操作模块FS(File System)常用函数简明总结
2014/06/05 NodeJs
jQuery学习笔记之jQuery.extend(),jQuery.fn.extend()分析
2014/06/09 Javascript
JavaScript中判断整字类型最简洁的实现方法
2014/11/08 Javascript
JQuery异步加载PartialView的方法
2016/06/07 Javascript
Bootstrap布局之栅格系统详解
2016/06/13 Javascript
深入理解jQuery()方法的构建原理
2016/12/05 Javascript
JS检测是否可以访问公网服务器功能代码
2017/06/19 Javascript
利用Vue实现移动端图片轮播组件的方法实例
2017/08/23 Javascript
浅谈在Vue-cli里基于axios封装复用请求
2017/11/06 Javascript
vue 引入公共css文件的简单方法(推荐)
2018/01/20 Javascript
Vue2.X和Vue3.0数据响应原理变化的区别
2019/11/07 Javascript
vue实现瀑布流组件滑动加载更多
2020/03/10 Javascript
微信小程序吸底区域适配iPhoneX的实现
2020/04/09 Javascript
[06:45]DOTA2卡尔工作室 英雄介绍幻影长矛手篇
2013/07/12 DOTA
python中assert用法实例分析
2015/04/30 Python
Python简明入门教程
2015/08/04 Python
解决Django数据库makemigrations有变化但是migrate时未变动问题
2018/05/30 Python
Python如何爬取实时变化的WebSocket数据的方法
2019/03/09 Python
python:批量统计xml中各类目标的数量案例
2020/03/10 Python
python virtualenv虚拟环境配置与使用教程详解
2020/07/13 Python
使用html5实现表格实现标题合并的实例代码
2019/05/13 HTML / CSS
金宝贝童装官网:Gymboree
2016/08/31 全球购物
某公司部分笔试题
2013/11/05 面试题
优秀共产党员演讲稿
2014/09/04 职场文书
2014流动人口计划生育工作总结
2014/12/20 职场文书
个人委托书范文
2015/01/28 职场文书
小学一年级数学教学反思
2016/02/16 职场文书
Python序列化与反序列化相关知识总结
2021/06/08 Python
Win11怎么把合并的任务栏分开 Win11任务栏合并分开教程
2022/04/06 数码科技