无论是网页还是移动端,都需要向服务器请求数据,那么作为php服务端,如何返回标准的数据呢?
现在主流的数据格式无非就是json和xml,下面我们来看看如何用php来封装一个返回这两种格式数据的类
我们先定义一个响应类
class respon{}
1、以json格式返回数据
json格式返回数据比较简单,直接将我们后台获取到的数据,以标准json格式返回给请求端即可
//按json格式返回数据public static function json($code,$message,$data=array()){ if(!is_nu河南简称豫meric($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.=lf::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)?lf::xmltoencode($value):$value; $xml.="</{$key}>"; } return $xml; }}
3、将两种格式封装为一个方法,完整代码如下:
class respon{ 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'){ lf::json($code,$message,$data); exit; }elif($type=='xml'){ lf::xmlencode($code,$message,$data); exit; }el{ //后续添加其他格式的数据 } } //按json格式返回数据 public static function json($code,$m保卫黄河串词essage,$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.=lf::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)?lf::xmltoencode($value):$value; $xml.="</{$key}>"; } return $xml; }}$data=array(1,231,123465,array(9,8,'pan'));respon::show(200,'suc凡客诚品网上购物网站cess',$data,'json');
这样我们调用show方法时,需要传递四个参数,第四个参数为想要返回的数据格式,默认为json格式,效果如下:
我们再调用一次show方法,以xml格式返回数据:
respon::show(200,'success',$data,'xml');
效果如下:
这样我们就完成了对这两种数据格式的封装,可以随意返回这两种格式的数据了
以上这篇php以json或xml格式返回请求数据的方法就是www.887551.com分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持www.887551.com。
本文发布于:2023-04-06 17:35:01,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/945324f8f05cefe0239c58ca80b94557.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP以json或xml格式返回请求数据的方法.doc
本文 PDF 下载地址:PHP以json或xml格式返回请求数据的方法.pdf
留言与评论(共有 0 条评论) |