多くの Web サイトで地域の天気をリアルタイムで表示できることがわかります。Google AIP インターフェースを使用してさまざまな都市の天気を取得し、それを自分の Web サイトに表示する方法を説明します。 。
se.php
$city = $_GET['city'];
コードは次のとおりです
コードをコピー
$data = createXml($city);
$xml = simplexml_load_string($data);
header("コンテンツタイプ: text/xml");
echo $xml->asXML();
// XMLデータを生成します
関数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 "
}
それ以外
{
return "n天気>n";
}
}
// 華氏を摂氏に変換します
関数 f2c($fahrenhite)
{
床を返します(($fahrenhite - 32) / 1.8);
}
クライアント c.php
コードは次のとおりです | コードをコピー |
<頭> <フォームメソッド="ポスト"アクション=""> <名前="都市" を選択> 選択> フォーム> if(!empty($_POST['city'])) { $city = $_POST['city']; $xml = simplexml_load_file("http://127.0.0.1/rest/se.php?city={$city}"); $html = " 都市:{$xml->city} n";$html .= " 低:{$xml->低} n";$html .= " 高:{$xml->高} n";エコー $html; } ?> |