xml方式封装通信数据方法 public static function xmlToEncode($data) { $xml = ""; foreach($data as $key => $value) { $attr = ""; if(is_numeric($key)) { $attr = " i ...
分类:
其他好文 时间:
2017-06-01 21:01:11
阅读次数:
202
xml方式封装通信数据方法
public static function xmlToEncode($data) {
$xml = "";
foreach($data as $key => $value) {
$attr = "";
if(is_numeric($key)) {
$attr = " id='{$key}'";
$key = "item";
}
$xml .= ...
分类:
其他好文 时间:
2014-09-17 18:40:52
阅读次数:
150