本文章分享一款只要三行就能取得你指定城市天氣信息的php+google api實現代碼,有需要的朋友可以參考一下。 代碼如下 復制代碼
<?
$xml = simplexml_load_file('http://www.google.com/ig/api?weather=長沙');
$information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");
echo $information[0]->attributes();
?>