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(); ?> 登录后复制 |