为什么我不能使用simpleHTMLDOM提取表数据?

时间:2015-05-26 16:38:36

标签: php web-scraping extract

我正在尝试从https://ownerschoicebuffalo.mortgagewebcenter.com/

中提取表格数据

我正在使用simplehtmldom.php

我的代码如下:

<?php
include('simple_html_dom.php');
$html = file_get_html('https://ownerschoicebuffalo.mortgagewebcenter.com/');

foreach($html->find('table') as $table)
{
    foreach($table->find('tr') as $tr)
    {
        foreach($tr->find('td') as $td)
        {
            echo $td->innertext;
        }
    }
}
?>

我在其他网站上使用以下方式对此进行了测试:

$table=$html->find('table');
foreach($table as $e)
{
    echo $e->innertext;
}

它有效。我能错过这个特定网站吗?

0 个答案:

没有答案