• 技术文章 >后端开发 >php教程

    PHP如何将XML转成数组_PHP

    2016-05-27 10:34:13原创337
    如果你使用 curl 获取的 xml data
    xml=simplexmlloadstring(data);
    data[′tk′]=jsondecode(jsonencode(xml),TRUE);
    如果是直接获取 URL 数据的话
    xml=simplexmlloadfile(data);
    data[′tk′]=jsondecode(jsonencode(xml),TRUE);

    先把 simplexml 对象转换成 json,再将 json 转换成数组。

    代码:

    <?php
    $string = << 
    
     Forty What?
     Joe
     Jane
     
     I know that's the answer -- but what's the question?
     
    
    XML;
    
    $xml=simplexml_load_string($string);
    $data = json_decode(json_encode($xml),TRUE);
    var_dump( $xml );
    var_dump( $data );
    

    object(SimpleXMLElement)[1]
     public 'title' => string 'Forty What?' (length=11)
     public 'from' => string 'Joe' (length=3)
     public 'to' => string 'Jane' (length=4)
     public 'body' => string '
     I know that's the answer -- but what's the question?
     ' (length=57)
    array
     'title' => string 'Forty What?' (length=11)
     'from' => string 'Joe' (length=3)
     'to' => string 'Jane' (length=4)
     'body' => string '
     I know that's the answer -- but what's the question?
     ' (length=57)
    

    以上就是本文的全部内容,希望对大家的学习有所帮助。

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:PHP XML 数组
    上一篇:初识ThinkPHP控制器_PHP 下一篇:thinkphp框架下实现登录、注册、找回密码功能_PHP
    VIP课程(WEB全栈开发)

    相关文章推荐

    • 【活动】充值PHP中文网VIP即送云服务器• 一文聊聊php5.4的特性【总结】• PHP商城那个好? 2022年十大开源PHP商城【分享】• 一文聊聊php5.6的特性【总结】• PHP常量两种定义方法:define和const有什么区别• 一文详解PHP5-8各版本特性【汇总】
    1/1

    PHP中文网