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'