首页 > 后端开发 > php教程 > xml转换成数组的有关问题

xml转换成数组的有关问题

WBOY
发布: 2016-06-13 13:37:28
原创
706 人浏览过

xml转换成数组的问题
现有如下xml:

XML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<root>
<rows>
<errmsg text=""></errmsg>
<retvalue text="true"></retvalue>
</rows>
<records>
<productno text="000321"></productno>
<billno text=""></billno>
<orderno text="D004410439"></orderno>
<out_trade_no text="100001"></out_trade_no>
<plcprem text="0.0"></plcprem>
<orderprem text="50.0"></orderprem>
<commision text="0.0"></commision>
</records>
....
<root>

</root></root>
登录后复制

xml深度不确定但每个节点都有text属性,想转换成如下数组,有什么好办法吗
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
Array
(
    [rows] => Array
        (
            [errMsg] => 
            [retValue] => true
        )
    [records] => Array
        (
            [productno] =>000321
            [billno] =>
            [orderno] =>D004410439
            [out_trade_no] => 100001
            [plcprem] =>0.0
            [orderprem] =>50.0
            [commision] =>0.0
        )
        .....
)


登录后复制


------解决方案--------------------
看看这个

http://weblog.thomassmart.com/2008/09/php-function-xml2array/
------解决方案--------------------
PHP code
$s =
<rows>
<errmsg text=""></errmsg>
<retvalue text="true"></retvalue>
</rows>
<records>
<productno text="000321"></productno>
<billno text=""></billno>
<orderno text="D004410439"></orderno>
<out_trade_no text="100001"></out_trade_no>
<plcprem text="0.0"></plcprem>
<orderprem text="50.0"></orderprem>
<commision text="0.0"></commision>
</records>

XML;
$obj = simplexml_load_string($s);
$r = array();
foreach($obj as $name=>$nodes) {
  foreach($nodes as $k=>$v) {
    $t = (array)$v->attributes()->text;
    $r[$name][$k] = $t[0];
  }
}
print_r($r);
<br><font color="#e78608">------解决方案--------------------</font><br>
登录后复制
探讨
PHP code
$s =









……
相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板