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

xml方式封装通信数据方法

时间:2017-06-01 21:01:11      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:turn   通信   pos   div   mod   item   return   value   public   

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方式封装通信数据方法

标签:turn   通信   pos   div   mod   item   return   value   public   

原文地址:http://www.cnblogs.com/blfbuaa/p/6930638.html

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