SimpleXML:在选择包含命名空间属性的节点时,如何获取其他属性?

时间:2016-07-06 22:48:13

标签: php xpath svg simplexml xml-namespaces

如何在选择包含命名空间属性的节点时获取其他属性?

我有一个xlink:href的SVG,我正在尝试访问id属性,但是当使用xpath时,它似乎只返回一个"属性节点"。如何获得实际的"元素节点"?

$xml = new \SimpleXMLElement('<?xml version="1.0" encoding="UTF-8" ?>
    <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
        <image id="my-image" xlink:href="http://example.com/image.png" />
    </svg>
');
$xml->registerXPathNamespace('svg', 'http://www.w3.org/2000/svg');
$xml->registerXPathNamespace('xlink', 'http://www.w3.org/1999/xlink');
$images = $xml->xpath('//svg:image/@xlink:href');
foreach ($images as $image) {
    var_dump($image);
}

输出:

object(SimpleXMLElement)#2 (1) {
  ["@attributes"]=>
  array(1) {
    ["href"]=>
    string(28) "http://example.com/image.png"
  }
}

https://3v4l.org/lvILL

1 个答案:

答案 0 :(得分:0)

好的,我明白了。正确的xpath是:

$images = $xml->xpath('//svg:image[@xlink:href]');

https://3v4l.org/NTcvP