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

分享一个解析XML成为php数组的方法

时间:2015-01-06 09:46:53      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

原文:分享一个解析XML成为php数组的方法

<?php
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$xml = ‘site_1.xml‘;
        $myxml = simplexml_load_file($xml);
       // print_r($myxml);
       
   
        print_r(xmlToArray($myxml));
   
    function xmlToArray($xml){
       $arr_xml = (array)$xml;
       foreach($arr_xml as $key=>$item){
           if(is_object($item) || is_array($item)){
               $arr_xml[$key] = xmlToArray($item);
           }
       }
       return $arr_xml;
   }
   
?>

  

分享一个解析XML成为php数组的方法

标签:

原文地址:http://www.cnblogs.com/lonelyxmas/p/4205191.html

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