php抓取天气预报接口数据问题,求指点
国家气象局免费天气预报接口(沈阳):http://www.weather.com.cn/data/cityinfo/101010100.html
这个接口提供了一个json格式的天气预报数据。
不知道用php怎么得到这个json,在网上找到了以下代码
但其中的httpGetRequest函数是个自定义函数,而且网上并没有放出这个函数的原型!请高手指点!
$url = 'http://www.weather.com.cn/data/cityinfo/101070101.html';<br /> $s = file_get_contents($url);<br /> print_r(json_decode($s, true));Array