這篇文章主要介紹了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');
而對於:
$obj=json_decode($data);
#它是把取得的json資料轉換為一個對象,方便呼叫;
那麼最後一句:
echo $obj->weatherinfo->city.':'.$obj->weatherinfo->weather1.' '.$obj->weatherinfo->temp1;
#就是要取得指定的資料並依照一定格式輸出,
$obj->weatherinfo->city //城市 $obj->weatherinfo->weather1 //今天的天气 $obj->weatherinfo->temp1 //今天的气温
最後在需要顯示的地方
<?php include 'weather.php' ?>##即可。 以上就是本文的全部內容,希望對大家的學習有所幫助。
PHP用cURL呼叫WebService取得天氣資訊
PHP API取得天氣預報,以及使用飛信API,給好友發_PHP教學
php ajax實作無刷新取得天氣狀態_PHP教學
#
以上是PHP 實作取得指定地區的天氣的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!