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中用PDO查询Mysql来避免SQL注入风险的方法
Apr 25 PHP
使用php验证复选框有效性的示例
Nov 13 PHP
PHP错误和异长常处理总结
Mar 06 PHP
php使用GD库创建图片缩略图的方法
Jun 10 PHP
Ajax实现对静态页面的文章访问统计功能示例
Oct 10 PHP
PHP二进制与字符串之间的相互转换教程
Oct 14 PHP
php使用正则表达式获取字符串中的URL
Dec 29 PHP
[原创]php使用strpos判断字符串中数字类型子字符串出错的解决方法
Apr 01 PHP
PHP批量删除jQuery操作
Jul 23 PHP
PHP实现的数组和XML文件相互转换功能示例
Mar 15 PHP
php日志函数error_log用法实例分析
Sep 23 PHP
基于thinkphp6.0的success、error实现方法
Nov 05 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
一个简单的MySQL数据浏览器
2006/10/09 PHP
PHP 编写大型网站问题集
2010/05/07 PHP
PHP微信开发之有道翻译
2016/06/23 PHP
php实现生成code128条形码的方法详解
2017/07/19 PHP
总结PHP代码规范、流程规范、git规范
2018/06/18 PHP
在laravel中实现事务回滚的方法
2019/10/10 PHP
jQuery中验证表单提交方式及序列化表单内容的实现
2014/01/06 Javascript
php的文件上传入门教程(实例讲解)
2014/04/10 Javascript
Node.js中的事件驱动编程详解
2014/08/16 Javascript
浅谈JS日期(Date)处理函数
2014/12/07 Javascript
js实现继承的5种方式
2015/12/01 Javascript
JS获取地址栏参数的两种方法(简单实用)
2016/06/14 Javascript
3种不同的ContextMenu右键菜单实现代码
2016/11/03 Javascript
Bootstrap基本插件学习笔记之按钮(21)
2016/12/08 Javascript
微信小程序 滚动到某个位置添加class效果实现代码
2017/04/19 Javascript
如何使用CSS3+JQuery实现悬浮墙式菜单
2019/06/18 jQuery
Element Card 卡片的具体使用
2020/07/26 Javascript
Vue实现计算器计算效果
2020/08/17 Javascript
[01:35:53]完美世界DOTA2联赛PWL S3 Magma vs GXR 第二场 12.13
2020/12/17 DOTA
浅谈pyqt5中信号与槽的认识
2019/02/17 Python
pandas取出重复数据的方法
2019/07/04 Python
Python Django框架模板渲染功能示例
2019/11/08 Python
Django自定义全局403、404、500错误页面的示例代码
2020/03/08 Python
Pycharm2020.1安装中文语言插件的详细教程(不需要汉化)
2020/08/07 Python
详解HTML5新增标签
2017/11/27 HTML / CSS
Alba Moda瑞士网上商店:独家意大利时尚女装销售
2016/11/28 全球购物
Python如何实现单例模式
2016/06/03 面试题
八年级语文教学反思
2014/02/11 职场文书
《商鞅南门立木》教学反思
2014/02/16 职场文书
《乞巧》教学反思
2014/02/27 职场文书
五一劳动节慰问信
2015/02/14 职场文书
教导主任个人总结
2015/03/03 职场文书
暑期辅导班宣传单
2015/07/14 职场文书
小学语文教师研修日志
2015/11/13 职场文书
MySQL中in和exists区别详解
2021/06/03 MySQL
SQL IDENTITY_INSERT作用案例详解
2021/08/23 MySQL