我想解析 xml 文件,到目前为止我发现的最好方法是使用 DOMDocument() 类。
示例 xml 字符串:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<response>
<resData>
<contact:infData xmlns:contact="http://example.com/contact-1.0">
<contact:status s="value1"/>
<contact:status s="value2"/>
<contact:status s="value3"/>
<contact:status s="value4"/>
</contact:infData>
</resData>
</response>
我使用函数 dom2array(波纹管)来解析 dom,但它只返回 1 个元素(仅限 value4)
<?php
function dom2array($node) {
$res = array();
if($node->nodeType == XML_TEXT_NODE){
$res = $node->nodeValue;
}else{
if($node->hasAttributes()){
$attributes = $node->attributes;
if(!is_null($attributes)){
$res['@attributes'] = array();
foreach ($attributes as $index=>$attr) {
$res['@attributes'][$attr->name] = $attr->value;
}
}
}
if($node->hasChildNodes()){
$children = $node->childNodes;
for($i=0;$i<$children->length;$i++){
$child = $children->item($i);
$res[$child->nodeName] = dom2array($child);
}
}
}
return $res;
}
?>
有没有办法解析所有 xml 元素并将它们发送到数组?
输出数组:
Array
(
[response] => Array
(
[#text] =>
[resData] => Array
(
[#text] =>
[contact:infData] => Array
(
[#text] =>
[contact:status] => Array
(
[@attributes] => Array
(
[s] => value4
)
)
)
)
)
)
value1, value2, value3 在哪里?:( 谢谢