vote up 0 vote down star

I am trying to pull an exact table during a "web scrape." Used cURL to pull page into $html, which succeeds fine.

Used Firebug to get exact XPATH to the table needed.

Code follows:

$dom = new DOMDocument($html);
$dom->loadHTML($html);

$xpath = new DOMXpath($dom);
$summary = $xpath->evaluate('/html/body/table[5]/tbody/tr/td[3]/table/tbody/tr[8]/td/table');
echo "Summary Length: " . $summary->length;

When executed, $summary->length is always zero. It doesn't pull that table node.

Any ideas?

flag

1 Answer

vote up 1 vote down

Firefox is liable to insert "virtual" tbody elements into tables that don't have them; do those elements exist in the original file?

link|flag
No, they don't. But I do see them in firefox. I have used XPath Checker as well and can see the data I need. But using it in my PHP xpath->evaluate never returns data. – Faasie May 7 at 20:46
<tr> is not allowed inside <table> directly - there has to be a <tbody> / <thead> / <tfoot>. It's implied if not specified directly. HTML is weird like that... the start and end tags can both be optional! – Greg May 7 at 20:55
If the the tbody elements don't exist in the original file, then they shouldn't be in your PHP xpath query. – Frank Farmer May 7 at 21:01
I apologize. The TBODY tags are there. I overlooked them when first looking at the source. – Faasie May 7 at 21:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.