php xpath problems

非 Y 不嫁゛ 提交于 2019-12-05 06:40:45

Like already said in the comment to you question, the document has a default namespace which you have to register before you can query it with XPath.

Since the linked duplicate only shows how to do it with DOM, I'll add an SimpleXml example

$feed = simplexml_load_file('http://feeds.feedburner.com/blogspot/MKuf');
$feed->registerXPathNamespace('f', 'http://www.w3.org/2005/Atom');
foreach ($feed->xpath('//f:link[@rel="next"]') as $link) {
    var_dump($link);
}

Manual Page: http://de.php.net/manual/de/simplexmlelement.registerxpathnamespace.php

Live Demo

As Gordon said, you need to register the XML document's default namespace, like this:

$xml->registerXPathNamespace('default', 'http://www.w3.org/2005/Atom');

And then use the default prefix to refer to normal elements:

$next = $xml->xpath("//default:link[@rel='next']");

Newer versions may allow you to define the default ('') namespace. See http://www.qc4blog.com/?p=281 for more information.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!