這篇文章主要介紹了PHP 獲取指定地區的天氣實例代碼的相關資料,需要的朋友可以參考下
PHP 獲取指定地區的天氣
在開發網站的時候用到天氣查詢,由於是基於Wordpress的所以有很多限制,先建造一個【weather.PHP】的文件,然後看代碼:
<?php //获取天气 $url = 'http://m.weather.com.cn/data/'; $id = '101181101'; //焦作的代号 $data = file_get_contents($url . $id .'.html'); $obj=json_decode($data); echo $obj->weatherinfo->city.':'.$obj->weatherinfo->weather1.' '.$obj->weatherinfo->temp1;
對於:
$url = 'http://m.weather.com.cn/data/'; $id = '101181101'; //焦作的代号 $data = file_get_contents($url . $id .'.html');
而對於:
$data = file_get_contents('http://m.weather.com.cn/data/101181101.html');
它是把獲取的json資料轉換為一個對象,方便調用;
$obj=json_decode($data);
最後在需要顯示的地方
echo $obj->weatherinfo->city.':'.$obj->weatherinfo->weather1.' '.$obj->weatherinfo->temp1;
即可。
感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!
更多PHP 取得指定地區的天氣實例代碼相關文章請注意PHP中文網!