我想知道如何从HTML文档的特定表中获取信息?现在,我正在从整个页面中提取所有数据,但我只希望表中的数据具有id team_batting
。这将如何实现?这是我的代码:
$dom = new DOMDocument();
$html = file_get_contents('https://www.baseball-reference.com/register/team.cgi?id=41270199');
@$dom->loadHTML($html);
$table = $dom->getElementByID('team_batting');
$stats = $dom->getElementsByTagName("td");
for ($i = 0; $i < $stats->length; $i++) {
$attr = $stats->item($i)->getAttribute('data-stat');
if ($attr != 'player') {
continue;
}
$nodes[] = $stats->item($i)->textContent;
foreach($nodes as $node) {
echo $node;
echo '<br>';
}
}
有了这个,我可以从data-stat="player"
属性中提取所有玩家名称,但我只想在team_batting
表中应用它。我该怎么做?