xml转换成数组的问题
时间:2011-12-28
来源:互联网
现有如下xml:
XML code
xml深度不确定但每个节点都有text属性,想转换成如下数组,有什么好办法吗
PHP code
XML code
<root> <rows> <errMsg text=""/> <retValue text="true"/> </rows> <records> <productno text="000321"/> <billno text=""/> <orderno text="D004410439"/> <out_trade_no text="100001"/> <plcprem text="0.0"/> <orderprem text="50.0"/> <commision text="0.0"/> </records> .... <root>
xml深度不确定但每个节点都有text属性,想转换成如下数组,有什么好办法吗
PHP code
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 ) ..... )
作者: Mr_merlin 发布时间: 2011-12-28
看看这个
http://weblog.thomassmart.com/2008/09/php-function-xml2array/
http://weblog.thomassmart.com/2008/09/php-function-xml2array/
作者: happypiggy2010 发布时间: 2011-12-28
引用 1 楼 happypiggy2010 的回复:
看看这个
http://weblog.thomassmart.com/2008/09/php-function-xml2array/
看看这个
http://weblog.thomassmart.com/2008/09/php-function-xml2array/
上面的方法用下面两行就能实现,但还是满足不了我的需要
PHP code
$obj=simplexml_load_string($xml); $arr=json_decode(json_encode($obj),TRUE);
作者: Mr_merlin 发布时间: 2011-12-28
PHP code
$s =<<< XML <root> <rows> <errMsg text=""/> <retValue text="true"/> </rows> <records> <productno text="000321"/> <billno text=""/> <orderno text="D004410439"/> <out_trade_no text="100001"/> <plcprem text="0.0"/> <orderprem text="50.0"/> <commision text="0.0"/> </records> </root> 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);PHP code
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 ) )
作者: xuzuning 发布时间: 2011-12-28
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28