首页 > 开发 > PHP > 正文

PHP以json或xml格式返回请求数据的方法

2024-05-04 22:43:04
字体:
来源:转载
供稿:网友

无论是网页还是移动端,都需要向服务器请求数据,那么作为php服务端,如何返回标准的数据呢?

现在主流的数据格式无非就是json和xml,下面我们来看看如何用php来封装一个返回这两种格式数据的类

我们先定义一个响应类

class response{}

1、以json格式返回数据

json格式返回数据比较简单,直接将我们后台获取到的数据,以标准json格式返回给请求端即可

//按json格式返回数据public static function json($code,$message,$data=array()){ if(!is_numeric($code)){  return ''; } $result=array(  "code"=>$code,  "message"=>$message,  "data"=>$data ); echo json_encode($result);}

2、以xml格式返回数据

这种方式需要遍历data里面的数据,如果数据里有数组还要递归遍历。还有一种特殊情况,当数组的下标为数字时,xml格式会报错,需要将xml中数字标签替换

//按xml格式返回数据 public static function xmlEncode($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'?>";  $xml.="<root>";  $xml.=self::xmlToEncode($result);  $xml.="</root>";  echo $xml; } public static function xmlToEncode($data){  $xml=$attr='';  foreach($data as $key=>$value){   if(is_numeric($key)){    $attr="id='{$key}'";    $key="item";   }   $xml.="<{$key} {$attr}>";   $xml.=is_array($value)?self::xmlToEncode($value):$value;   $xml.="</{$key}>";  }  return $xml; }}

3、将两种格式封装为一个方法,完整代码如下:

class response{ public static function show($code,$message,$data=array(),$type='json'){  /**  *按综合方式输出通信数据  *@param integer $code 状态码  *@param string $message 提示信息  *@param array $data 数据  *@param string $type 数据类型  *return string  */  if(!is_numeric($code)){   return '';  }  $result=array(   "code"=>$code,   "message"=>$message,   "data"=>$data  );  if($type=='json'){   self::json($code,$message,$data);   exit;  }elseif($type=='xml'){   self::xmlEncode($code,$message,$data);   exit;  }else{   //后续添加其他格式的数据  } } //按json格式返回数据 public static function json($code,$message,$data=array()){  if(!is_numeric($code)){   return '';  }  $result=array(   "code"=>$code,   "message"=>$message,   "data"=>$data  );  echo json_encode($result); } //按xml格式返回数据 public static function xmlEncode($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'?>";  $xml.="<root>";  $xml.=self::xmlToEncode($result);  $xml.="</root>";  echo $xml; } public static function xmlToEncode($data){  $xml=$attr='';  foreach($data as $key=>$value){   if(is_numeric($key)){    $attr="id='{$key}'";    $key="item";   }   $xml.="<{$key} {$attr}>";   $xml.=is_array($value)?self::xmlToEncode($value):$value;   $xml.="</{$key}>";  }  return $xml; }}$data=array(1,231,123465,array(9,8,'pan'));response::show(200,'success',$data,'json');            
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表