I'm trying to do Xpath queries on DOMElements but it doesn't seem to work. Here is the code
<html>
<div class="test aaa">
<div></div>
<div class="link">contains a link</div>
<div></div>
</div>
<div class="test bbb">
<div></div>
<div></div>
<div class="link">contains a link</div>
</div>
</html>
What I'm doing is this:
$dom = new DOMDocument();
$html = file_get_contents("file.html");
@$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$entries = $xpath->query("//div[contains(@class,'test')]");
if (!$entries->length > 0) {
echo "Nothing\n";
} else {
foreach ($entries as $entry) {
$link = $xpath->query('/div[@class=link]',$entry);
echo $link->item(0)->nodeValue;
// => PHP Notice: Trying to get property of non-object
}
}
Everything works fine up to $xpath->query('/div[@class=link], $entry);. I don't know how to use Xpath on a particular DOMElement ($entry).
[Q1] How can I use xpath queries on DOMElement?
updated: added HTML code and corrected my Xpaths.
//div.linkis an absolute XPath expression while you want to evaluate a relative XPath expression against each$entry. So, it would rather be:.//div.link– Dimitre Novatchev May 8 '11 at 18:17loadHTMLmethod. – Jon May 8 '11 at 18:21