當前位置:首頁 » 編程語言 » 手機php代碼

手機php代碼

發布時間: 2024-07-02 23:57:44

php 做安卓 伺服器 怎麼編寫代碼

php只能做服務端的數據處理,然後將數據用介面的方式,以json的數據形式給安卓客戶端程序調用。

test.php

<!--?php

classResponse{
constJSON=json;
/**
*按綜合方式輸出通信數據
*@paraminteger$code狀態碼
*@paramstring$message提示信息
*@paramarray$data數據
*@paramstring$type數據類型
*returnstring
*/
publicstaticfunctionshow($code,$message=&#39;&#39;,$data=array(),$type=self::JSON){
if(!is_numeric($code)){
return&#39;&#39;;
}

$type=isset($_GET[&#39;format&#39;])?$_GET[&#39;format&#39;]:self::JSON;

$result=array(
&#39;code&#39;=-->$code,
'message'=>$message,
'data'=>$data,
);

if($type=='json'){
self::json($code,$message,$data);
exit;
}elseif($type=='array'){
var_mp($result);
}elseif($type=='xml'){
self::xmlEncode($code,$message,$data);
exit;
}else{
//TODO
}
}
/**
*按json方式輸出通信數據
*@paraminteger$code狀態碼
*@paramstring$message提示信息
*@paramarray$data數據
*returnstring
*/
publicstaticfunctionjson($code,$message='',$data=array()){

if(!is_numeric($code)){
return'';
}

$result=array(
'code'=>$code,
'message'=>$message,
'data'=>$data
);

echojson_encode($result);
exit;
}

/**
*按xml方式輸出通信數據
*@paraminteger$code狀態碼
*@paramstring$message提示信息
*@paramarray$data數據
*returnstring
*/
publicstaticfunctionxmlEncode($code,$message,$data=array()){
if(!is_numeric($code)){
return'';
}

$result=array(
'code'=>$code,
'message'=>$message,
'data'=>$data,
);

header(Content-Type:text/xml);
$xml=<!--?xmlversion=&#39;1.0&#39;encoding=&#39;UTF-8&#39;?-->
;
$xml.=<root>
;

$xml.=self::xmlToEncode($result);

$xml.=</root>;
echo$xml;
}

($data){

$xml=$attr=;
foreach($dataas$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;
}

}
<!--?php
require_once(&#39;./test.php&#39;);
$data=array(
&#39;id&#39;=-->1,
'name'=>david
);
Response::show(200,'success',$data);
熱點內容
安卓的face怎麼使用 發布:2024-11-26 15:05:50 瀏覽:89
存儲魔力象限2016 發布:2024-11-26 15:04:47 瀏覽:866
QQ填寫驗證碼是歷史密碼是什麼 發布:2024-11-26 15:04:16 瀏覽:506
vs2017編譯文件無效或損毀 發布:2024-11-26 15:04:16 瀏覽:598
騰訊微信如何更改登錄密碼 發布:2024-11-26 14:57:46 瀏覽:22
pythondict參數 發布:2024-11-26 14:49:41 瀏覽:106
ubuntu安裝linux源碼 發布:2024-11-26 14:48:52 瀏覽:745
百度雲解壓密碼忘記 發布:2024-11-26 14:35:36 瀏覽:864
最差擬合演算法 發布:2024-11-26 14:21:17 瀏覽:740
指令式編程 發布:2024-11-26 14:16:24 瀏覽:20