我正在运行 PHP 5.4.14,并且正在尝试使用 XPath 在 XML 文档中进行搜索。我不知道每个命名空间将使用哪个命名空间前缀,所以我使用registerXPathNamespace()
.
问题是,如果我为 XPath 注册了一个新前缀(例如C
)并且文档已经在使用它,那么 XPath 查询将不会使用我的前缀,而是使用原来的前缀。
让我向您展示一个示例代码来显示此行为:
<?php
$body = <<<EOF
<multistatus xmlns="DAV:" xmlns:VC="urn:ietf:params:xml:ns:carddav" xmlns:C="urn:ietf:params:xml:ns:caldav" xmlns:C1="http://calendarserver.org/ns/">
<response>
<href>/caldav.php/jorge/contacts/</href>
<propstat>
<prop>
<current-user-principal>
<href>/caldav.php/jorge/</href>
</current-user-principal>
<resourcetype>
<collection/>
<VC:addressbook/>
</resourcetype>
<displayname/>
<VC:addressbook-home-set>
<href>/caldav.php/jorge/</href>
</VC:addressbook-home-set>
</prop>
<status>HTTP/1.1 200 OK</status>
</propstat>
</response>
</multistatus>
EOF;
$xml = new SimpleXMLElement($body);
$xml->registerXPathNamespace('C', 'urn:ietf:params:xml:ns:carddav');
$xpresult = $xml->xpath('//C:addressbook-home-set');
var_dump($xpresult);
如果你运行它,你会看到查询没有返回任何结果。
令人惊讶的是,如果我将注册的前缀从C更改为任何其他尚未定义的前缀,例如X,那么查询将按预期工作:
$xml->registerXPathNamespace('X', 'urn:ietf:params:xml:ns:carddav');
$xpresult = $xml->xpath('//X:addressbook-home-set');
我做错什么了吗?鉴于我无法提前知道将使用哪些前缀,是否可以设置自定义前缀并确保它不会与文档中的其他前缀冲突,除了使用丑陋的MYPROGRAMUNUSEDPREFIXC前缀?
我知道我可以获取文档中使用的前缀和名称空间,但我想要固定的 XPath 查询字符串。
FWIW DOMXPath 也有这个问题(检查过)。