首頁  >  文章  >  後端開發  >  Google API 取得當前天氣資訊的php代碼

Google API 取得當前天氣資訊的php代碼

WBOY
WBOY原創
2016-07-25 09:00:021090瀏覽
php通过Google API获取当前天气信息,只需 3 行代码,大家在使用时只需要把其中的 ADDRESS 换成你想要的城市即可。

代码如下:

<?php
/**
 * Google API应用
 * 获取某城市的当天天气
 * by http://bbs.it-home.org
*/
$xml = simplexml_load_file('http://www.google.com/ig/api?weather=ADDRESS'); 
  $information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition"); 
  echo $information[0]->attributes();
?>
您可能感兴趣的文章: php 天气预报代码一例 php调用yahoo sina api天气预报的实现代码 php调用google天气api的实例代码


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn