考虑以下 XML:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<myResponse xmlns="https://example.com/foo">
<myResult xmlns:a="https://example.com/bar" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<a:accountNumber>AAA</a:accountNumber>
<a:accountName>BBB</a:accountName>
<a:accountType>CCC</a:accountType>
</myResult>
</myResponse>
</s:Body>
</s:Envelope>
我正在尝试选择 myResult 及其下方的所有元素。
我得到的最接近的是:
//*[local-name()='myResult']//a:*
这让我得到了元素的值,但我不知道哪个值属于哪个元素。
我在 PHP 中执行此操作,这是(大致)我正在使用的代码:
<?php
$xmlObject = new SimpleXMLElement($result);
$namespaces = $xmlObject->getNamespaces(true);
foreach($namespaces as $key => $value) {
if($key == '') {
$key = 'ns';
}
$xmlObject->registerXPathNamespace($key, $value);
}
$element = $xmlObject->xpath("//myResult");
?>
我知道有很多关于 XPath 和 XML 名称空间的问题(哦,我是如何搜索的),但我还没有找到与我的特定情况相匹配的问题。我想做的甚至可能吗?