当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-27 15:25:20 浏览: 评论:0 

本文章分享一款只要三行就能取得你指定城市天气信息的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. ?>

Tags: Google API 获取 天气信息

分享到: