PHP生成json和xml类型接口数据格式

5年以前  |  阅读数:457 次  |  编程语言:PHP 

php生成接口通信数据


    /**
     * 生成接口数据格式
     */
    class Response{
      /**
       * [show 按综合方式输出数据]
       * @param [int] $code    [状态码]
       * @param [string] $message [提示信息]
       * @param array $data  [数据]
       * @param [string] $type [类型]
       * @return [string]    [返回值]
       */
      public static function show($code, $message, $data = array(),$type = ''){
        if(!is_numeric($code)){
          return '';
        }
        $result = array(
          'code' => $code,
          'message' => $message,
          'data' => $data
        );
        if($type == 'json'){
          return self::json($code, $message, $data);
        }elseif($type == 'xml'){
          return self::xml($code, $message, $data);
        }else{
          //TODO
        }
      }
      /**
       * [json 按json方式输出数据]
       * @param [int] $code    [状态码]
       * @param [string] $message [提示信息]
       * @param [array] $data  [数据]
       * @return [string]     [返回值]
       */
      public static function json($code, $message, $data = array()){
        if(!is_numeric($code)){
          return '';
        }
        $result = array(
          'code' => $code,
          'message' => $message,
          'data' => $data
        );
        $result = json_encode($result);
        return $result;
      }

      /**
       * [xml 按xml格式生成数据]
       * @param [int] $code    [状态码]
       * @param [string] $message [提示信息]
       * @param array $data   [数据]
       * @return [string]     [返回值]
       */
      public static function xml($code, $message, $data = array()){
        if(!is_numeric($code)){
          return '';
        }
        $result = array(
          'code' => $code,
          'message' => $message,
          'data' => $data
        );
        header("Content-Type:text/xml");
        $xml = "<?xml version='1.0' encoding='UTF-8'?>\n";
        $xml .= "<root>\n";
        $xml .= self::xmlToEncode($data);
        $xml .= "</root>";
        return $xml;
      }

      public static function xmlToEncode($data){
        $xml = '';
        foreach($data as $key => $value){
          if(is_numeric($key)){
            $attr = "id='{$key}'";
            $key = "item";
          }
          $xml .= "<{$key} {$attr}>\n";
          $xml .= is_array($value) ? self::xmlToEncode($value) : "{$value}\n";
          $xml .= "</{$key}>\n";
        }
        return $xml;
      }
    }

    //测试
    $grade = array("score" => array(70, 95, 70.0, 60, "70"), "name" => array("Zhang San", "Li Si", "Wang Wu", "Zhao Liu", "TianQi"));
    $response = new Response();
    $result = $response :: show(200,'success',$grade,'json');
    print_r($result);

以上所述就是本文的全部内容了,希望大家能够喜欢。

 相关文章:
PHP分页显示制作详细讲解
SSH 登录失败:Host key verification failed
获取IMSI
将二进制数据转为16进制以便显示
获取IMEI
文件下载
贪吃蛇
双位运算符
PHP自定义函数获取搜索引擎来源关键字的方法
Java生成UUID
发送邮件
年的日历图
提取后缀名
在Zeus Web Server中安装PHP语言支持
让你成为最历害的git提交人
Yii2汉字转拼音类的实例代码
再谈PHP中单双引号的区别详解
指定应用ID以获取对应的应用名称
Python 2与Python 3版本和编码的对比
php封装的page分页类完整实例