我想使用 PHP Simple HTML DOM Parser 来获取 Google Apps 状态表,这样我就可以创建自己的仪表板,其中只包含 Google Mail 和 Google Talk 服务状态,以及更改演示文稿(html、css)。
作为测试,我想查找/输出表格元素,但它没有显示任何结果。
$html = file_get_html('http://www.google.com/appsstatus');
$e = $html->find("table", 0);
echo $e->outertext;
虽然,如果我找到/输出 div 元素,它将显示结果。
$html = file_get_html('http://www.google.com/appsstatus');
$e = $html->find("div", 0);
echo $e->outertext;
任何帮助将非常感激。