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

php将xml转换为数组

时间:2018-05-04 11:58:28      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:php将xml转换为数组

  • 函数:
    function xmlToArray($xml){
    $array_data = json_decode(json_encode(simplexml_load_string($xml, ‘SimpleXMLElement‘, LIBXML_NOCDATA)), true);      
    return $array_data;
    }
  • 测试:
    a. 代码:
    <?php
    $string = <<<XML
    <?xml version=‘1.0‘?> 
    <document>
    <title>Forty What?</title>
    <from>Joe</from>
    <to>Jane</to>
    <body>
    I know that‘s the answer -- but what‘s the question?
    </body>
    </document>
    XML;
    function xmlToArray($xml){
    $array_data = json_decode(json_encode(simplexml_load_string($xml, ‘SimpleXMLElement‘, LIBXML_NOCDATA)), true);      
    return $array_data;
    }
    $arr = xmlToArray($string);
    var_dump($arr);

    b. 输出:

    array(4) {
    ["title"]=>
    string(11) "Forty What?"
    ["from"]=>
    string(3) "Joe"
    ["to"]=>
    string(4) "Jane"
    ["body"]=>
    string(57) "
    I know that‘s the answer -- but what‘s the question?
    "
    }
  • php将xml转换为数组

    标签:php将xml转换为数组

    原文地址:http://blog.51cto.com/12173069/2112556

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