即使我在特定标签中,PHP DOM 也会返回所有节点。我一直在尝试解决这个问题大约 2 周,但没有任何进展。请帮忙。
这是我的代码:
$dom = new DOMDocument;
$dom->loadhtmlfile($url);
$doc=$dom->documentElement;
$res = $doc->getElementsByTagName('td')->item(54);
$tables = $res->getElementsByTagName('table'); //Here it returns every 'table', not just the ones which are under that 'td'