//PHP开发APP接口
class Response{
const JSON="json";
public static function show($code,$message,$data=array(),$type=self::JSON){
if(!is_numeric($code)){
return '';
}
$type = isset($_GET['fomat'])? $_GET['fomat'] : self::JSON;
$result=array(
'code'=>$code,
'message'=>$message,
'data'=>$data
);
if($type=='json'){
self::json($code,$message,$data);
exit;
}elseif($type=="array"){
var_dump($result);
}elseif($type=='xml'){
self:: xmlEncode($code,$message,$data);
exit;
}else{
echo 'do something';//
}
}
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);
exit;
}
public static function xmlEncode(){
header("Content-Type:type/xml");//输出xml格式数据
$xml="<?xml version='1.0' encoding='UTF-8'?>\n";
$xml.="<root>\n";
$xml.="<code>200</code>\n";
$xml.="<message>数据返回成功</message>\n";
$xml.="<data>\n";
$xml.="<id>1</id>\n";
$xml.="<name>kmong</name>\n";
$xml.="</data>\n";
$xml.="</root>\n";
echo $xml;
}
}
//$res=new Response;
//$data=$res->show(200,'成功',array('name'=>'tim','age'=>12));
//var_dump($data);
Response::json(200,"success",$array); 综合封装 xml json格式的通讯数据
$data=array(
id=>1,
name=>'Tom',
'type'=>array(4,5,6),
'test'=>array(1,34,22=>array(1212,'test'));
);
Response::show(200,'success,$data,'array');
访问方法 添加get判断后
locahost//xxx.PHP?fomate=json
转载于:https://www.cnblogs.com/itcx/p/4431874.html
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。