如何通过PHP从特定HTML表中提取数据

时间:2018-06-12 17:25:16

标签: php html dom

我想知道如何从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表中应用它。我该怎么做?

0 个答案:

没有答案