主頁(yè) > 知識(shí)庫(kù) > PHP以json或xml格式返回請(qǐng)求數(shù)據(jù)的方法

PHP以json或xml格式返回請(qǐng)求數(shù)據(jù)的方法

熱門(mén)標(biāo)簽:智能外呼電銷系統(tǒng) 拉薩打電話機(jī)器人 寶安400電話辦理 h5 地圖標(biāo)注 高識(shí)別電銷機(jī)器人 電銷機(jī)器人-快迭智能 哈爾濱400電話辦理到易號(hào)網(wǎng) 沈陽(yáng)人工智能電銷機(jī)器人公司 合肥外呼系統(tǒng)app

無(wú)論是網(wǎng)頁(yè)還是移動(dòng)端,都需要向服務(wù)器請(qǐng)求數(shù)據(jù),那么作為php服務(wù)端,如何返回標(biāo)準(zhǔn)的數(shù)據(jù)呢?

現(xiàn)在主流的數(shù)據(jù)格式無(wú)非就是json和xml,下面我們來(lái)看看如何用php來(lái)封裝一個(gè)返回這兩種格式數(shù)據(jù)的類

我們先定義一個(gè)響應(yīng)類

class response{
}

1、以json格式返回?cái)?shù)據(jù)

json格式返回?cái)?shù)據(jù)比較簡(jiǎn)單,直接將我們后臺(tái)獲取到的數(shù)據(jù),以標(biāo)準(zhǔn)json格式返回給請(qǐng)求端即可

//按json格式返回?cái)?shù)據(jù)
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格式返回?cái)?shù)據(jù)

這種方式需要遍歷data里面的數(shù)據(jù),如果數(shù)據(jù)里有數(shù)組還要遞歸遍歷。還有一種特殊情況,當(dāng)數(shù)組的下標(biāo)為數(shù)字時(shí),xml格式會(huì)報(bào)錯(cuò),需要將xml中數(shù)字標(biāo)簽替換

//按xml格式返回?cái)?shù)據(jù)
 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、將兩種格式封裝為一個(gè)方法,完整代碼如下:

class response{
 public static function show($code,$message,$data=array(),$type='json'){
  /**
  *按綜合方式輸出通信數(shù)據(jù)
  *@param integer $code 狀態(tài)碼
  *@param string $message 提示信息
  *@param array $data 數(shù)據(jù)
  *@param string $type 數(shù)據(jù)類型
  *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{
   //后續(xù)添加其他格式的數(shù)據(jù)
  }
 }
 //按json格式返回?cái)?shù)據(jù)
 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格式返回?cái)?shù)據(jù)
 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');

這樣我們調(diào)用show方法時(shí),需要傳遞四個(gè)參數(shù),第四個(gè)參數(shù)為想要返回的數(shù)據(jù)格式,默認(rèn)為json格式,效果如下:

我們?cè)僬{(diào)用一次show方法,以xml格式返回?cái)?shù)據(jù):

response::show(200,'success',$data,'xml');

效果如下:

這樣我們就完成了對(duì)這兩種數(shù)據(jù)格式的封裝,可以隨意返回這兩種格式的數(shù)據(jù)了

以上這篇PHP以json或xml格式返回請(qǐng)求數(shù)據(jù)的方法就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • php+Ajax處理xml與json格式數(shù)據(jù)的方法示例
  • php實(shí)現(xiàn)xml與json之間的相互轉(zhuǎn)換功能實(shí)例
  • PHP生成json和xml類型接口數(shù)據(jù)格式
  • PHP實(shí)現(xiàn)返回JSON和XML的類分享
  • php json與xml序列化/反序列化
  • php 備份數(shù)據(jù)庫(kù)代碼(生成word,excel,json,xml,sql)
  • PHP封裝的XML簡(jiǎn)單操作類完整實(shí)例
  • PHP數(shù)組生成XML格式數(shù)據(jù)的封裝類實(shí)例
  • php封裝json通信接口詳解及實(shí)例
  • PHP封裝返回Ajax字符串和JSON數(shù)組的方法
  • PHP封裝XML和JSON格式數(shù)據(jù)接口操作示例

標(biāo)簽:泰州 成都 梅州 張家口 林芝 威海 巴中 山東

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP以json或xml格式返回請(qǐng)求數(shù)據(jù)的方法》,本文關(guān)鍵詞  PHP,以,json,或,xml,格式,返回,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP以json或xml格式返回請(qǐng)求數(shù)據(jù)的方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于PHP以json或xml格式返回請(qǐng)求數(shù)據(jù)的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章