程序员人生 网站导航

php 利用Google API 获取当前天气信息代码

栏目:php教程时间:2014-01-20 05:50:32

本文章分享一款只要三行就能取得你指定城市天气信息的php+google api实现代码,代码如下:

  1. <? 
  2. $xml = simplexml_load_file('http://www.google.com/ig/api?weather=长沙');  
  3. $information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");  
  4. echo $information[0]->attributes(); 
  5. ?>
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐