<?php $html=<<<HTML <html> <head></head> <body> <table><tr><td>123</td><td>123</td><td>123</td><td>123</td><td>123</td></tr> <tr><td class="group">777</td><td>123</td><td>123</td><td>123</td><td class="mk">888</td></tr> </table> </body> </html> HTML; $dom=new DOMDocument("1.0","UTF-8"); $dom->loadHTML($html); $xpath=new DOMXPath($dom); foreach($xpath->query('//td[@class="group" or @class="mk"]') as $node) { echo $node->attributes->getNamedItem("class")->nodeValue; echo ": "; echo $node->textContent; echo "\n"; }
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`