我想从其他网站获取html表中的当前天气数据。我希望获得有关河流,流量和其他信息的当前(每小时刷新)信息的网页:http://www.arso.gov.si/vode/podatki/stanje_voda_samodejne.html。
问题是如何检索所有列的数据(有关河流的数据),但不能检索所有行(河流)示例河Mura,Drava,Sora。
我想在我的网站上使用php或javascript显示数据。请帮忙!
答案 0 :(得分:0)
从网址获取数据
这将为您提供给定页面的HTML。
$content = file_get_contents('you url here');
$this->html = $content;
$this->process();
function process(){
// Your html extraction code here
}
注意强>
Webscrping用于从网站上废弃公共数据。它取决于网站的政策。