我正在尝试从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;
}
它有效。我能错过这个特定网站吗?