码迷,mamicode.com
首页 > 其他好文 > 详细

xml方式封装通信数据方法

时间:2014-09-17 18:40:52      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:xml方式封装通信数据方法

xml方式封装通信数据方法

public static function xmlToEncode($data) {
  
    $xml = "";
    foreach($data as $key => $value) {
        $attr = "";
        if(is_numeric($key)) {
            $attr = " id='{$key}'";
            $key = "item";
        }
        $xml .= "<{$key}{$attr}>";
        $xml .= is_array($value) ? self::xmlToEncode($value) : $value;
        $xml .= "</{$key}>\n";
    }
    return $xml;
}


xml方式封装通信数据方法

标签:xml方式封装通信数据方法

原文地址:http://blog.csdn.net/phpfenghuo/article/details/39345829

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!