1

我想获取属性xsi:schemaLocation的内容。它与 php 中的 getElementsByTagName (以及之后的 foreach)完美配合,但它很丑,对吧?

如何通过简单的 Xpath 查询获得相同的内容?

这是 xml 内容的简短示例:

<?xml version="1.0" encoding="utf-8"?>
<gpx xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0" creator="blabla" xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.groundspeak.com/cache/1/0/1 http://www.groundspeak.com/cache/1/0/1/cache.xsd" xmlns="http://www.topografix.com/GPX/1/0">
...
</gpx>

谢谢!

4

2 回答 2

3

通常,您需要先注册要使用 XPath 库的名称空间。然后,您可以通过在名称中包含命名空间前缀来查询属性。

因此,假设您正在使用 DOMXPath,您可能会注册以下命名空间:

$xpath = new DOMXPath($doc);
$xpath->registerNamespace("xsi","http://www.w3.org/2001/XMLSchema-instance");
$xpath->registerNamespace("gpx", "http://www.topografix.com/GPX/1/0");

然后您可以使用以下内容查询 schemaLocation 属性:

$xpath->query("/gpx:gpx/@xsi:schemaLocation",$doc);
于 2013-05-06T22:05:51.770 回答
2

使用SimpleXMLElement 类,您可以轻松获取属性xsi:schemaLocation的值:

<?php
$xml = <<<XML
<?xml version="1.0" encoding="utf-8"?>
<gpx xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="1.0" creator="blabla" xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.groundspeak.com/cache/1/0/1 http://www.groundspeak.com/cache/1/0/1/cache.xsd" xmlns="http://www.topografix.com/GPX/1/0">
</gpx>
XML;

$sxe = new SimpleXMLElement($xml);
$schemaLocation = $sxe->attributes('xsi', true)->schemaLocation;

echo (string) $schemaLocation;
于 2013-05-06T22:15:23.107 回答