码迷,mamicode.com
首页 > 编程语言 > 详细

PHP将XML数据转换为数组

时间:2016-10-28 20:21:01      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:转换   string   print   bsp   join   lex   span   pap   struct   

<?php

$s=join(,file(‘httpapi.elong.comxmlv2.0hotelcn0132701501.xml‘));
$result = xml_to_array($s);
print_r($result);

/*函数*/
function xml_to_array($xml)
{
    $array = (array)(simplexml_load_string($xml));
    foreach ($array as $key=$item){
        $array[$key]  =  struct_to_array((array)$item);
    }
    return $array;
}

function struct_to_array($item) {
    if(!is_string($item)) {
        $item = (array)$item;
        foreach ($item as $key=$val){
            $item[$key]  =  struct_to_array($val);
        }
    }
    return $item;
}

 

PHP将XML数据转换为数组

标签:转换   string   print   bsp   join   lex   span   pap   struct   

原文地址:http://www.cnblogs.com/renxing123/p/6008895.html

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