我們會看到很多網站都可以實時的顯示當時當地的天氣,下面我來告訴你這種實時天氣的做吧,利用google aip接口即可實現獲取不同城市的天氣並顯示在自己網站上。
se.php
代碼如下 復制代碼
<?php
$city = $_GET['city'];
$data = createXml($city);
$xml = simplexml_load_string($data);
header("Content-type: text/xml");
echo $xml->asXML();
// 生成XML數據
function createXml($city)
{
// Google 天氣API
$weather = simplexml_load_file("http://www.google.com/ig/api?weather={$city}");
if(isset($weather->weather->forecast_conditions))
{
$low = f2c($weather->weather->forecast_conditions->low['data']);
$high = f2c($weather->weather->forecast_conditions->high['data']);
return "<weather>n<city>{$city}</city>n<low>{$low}</low>n<high>{$high}</high></weather>n";
}
else
{
return "<weather>n</weather>n";
}
}
// 華氏度轉攝氏度
function f2c($fahrenhite)
{
return floor(($fahrenhite - 32) / 1.8);
}
客戶端 c.php
代碼如下 復制代碼 <html>