我正在开发一个简单的网站,它将解析我传递给simple_html_dom的网址中的表格中的信息。网页上的表最初使用全零进行初始化,因此当我解析它时,我只得到全零。无论如何都要在加载完所有内容后进行解析。顺便说一句,我正在使用PHP。以下是我解析其中一个数据字段的示例。
require_once('simple_html_dom.php');
$html = file_get_html('http://games.espn.go.com/fba/standings?leagueId=169400&seasonId=2014');
$fg_pcts = array();
foreach($html->find('td') as $element) {
if ($element->class == 'precise sortableStat19') {
array_push($fg_pcts, $element->plaintext);
}
}
这是表格的样子: fantasy table