我有一个看起来像这样的表:http: //pastebin.com/jjZxeNHF
我把它作为一个 PHP-DOMDocument。
现在我想“解析”这张表。
如果我是正确的,那么类似下面的东西是行不通的,因为 $superTable->getElementsByTagName('tr')
不仅会得到外部 tr,还会得到内部 tr。
foreach ($superTable->getElementsByTagName('tr') as $superRow) {
foreach ($superRow->getElementsByTagName('td') as $superCol) {
foreach ($superCol->getElementsByTagName('table') as $table) {
foreach ($table->getElementsByTagName('tr') as $row) {
foreach ($row->getElementsByTagName('td') as $col) {
}
}
}
}
}
如第二个片段中所述,我如何逐个字段地浏览所有表。