作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 php 中有一个 xml 字符串,我想将它放入一个数组中。
如何使用简单的 xml 获取 ttt:tree 和 ttt:car?
<?xmlversion="1.0"encoding="utf-8"?>
<soap:Envelope xmlns:soap="htp://schemas.xmlsoap.org/soap/envelope/"xmlns:xsi="htp://www.w3.org/2001/XMLSchema-instance"xmlns:xsd="htp://www.w3.org/2001/XMLSchema">
<soap:Body>
<a xmlns="www.ttt.com">
<b xmlns:ttt="www.ttt.com">
<ttt:tree>big</ttt:tree>
<ttt:car>small</ttt:car>
</b>
</a>
</soap:Body>
</soap:Envelope>
最佳答案
$simpleXML = new SimpleXMLElement($x);
//the hard way
foreach($simpleXML->children('soap',true)
->children('www.ttt.com')
->children('www.ttt.com')
->children('www.ttt.com') as $nodename => $nodevalue){
echo $nodename.':'.$nodevalue.PHP_EOL;
}
//or direct:
echo $simpleXML->children('soap',true)
->children('www.ttt.com')
->children('www.ttt.com')
->children('www.ttt.com')->tree;
//the less hard way
$simpleXML->registerXPathNamespace('wantthisone','www.ttt.com');
$trees = $simpleXML->xpath('//wantthisone:tree');
echo $trees[0];
$cars = $simpleXML->xpath('//wantthisone:car');
echo $cars[0];
关于php - 简单的xml如何在没有命名空间的情况下读取节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6865540/
我是一名优秀的程序员,十分优秀!