使用php或javascript从html表中检索(获取)当前天气数据

时间:2016-04-24 14:41:43

标签: javascript php jquery html

我想从其他网站获取html表中的当前天气数据。我希望获得有关河流,流量和其他信息的当前(每小时刷新)信息的网页:http://www.arso.gov.si/vode/podatki/stanje_voda_samodejne.html

问题是如何检索所有列的数据(有关河流的数据),但不能检索所有行(河流)示例河Mura,Drava,Sora。

我想在我的网站上使用php或javascript显示数据。请帮忙!

1 个答案:

答案 0 :(得分:0)

从网址获取数据

这将为您提供给定页面的HTML。

$content = file_get_contents('you url here');
$this->html =  $content;
$this->process();
function process(){

// Your html extraction code here
}

注意

Webscrping用于从网站上废弃公共数据。它取决于网站的政策。

https://www.quora.com/What-is-the-legality-of-web-scraping