最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php获取google当前天气实现程序

时间:2014-06-09 16:39来源: 作者: 点击:
我们会看到很多网站都可以实时的显示当时当地的天气,下面我来告诉你这种实时天气的做吧,利用google aip接口即可实现获取不同城市的天气并显示在自己网站上。 se.php, 代码如下: ?php $city = $

我们会看到很多网站都可以实时的显示当时当地的天气,下面我来告诉你这种实时天气的做吧,利用google aip接口即可实现获取不同城市的天气并显示在自己网站上。

se.php,代码如下:

  1. <?php 
  2. $city = $_GET['city']; 
  3. $data = createXml($city); 
  4.  
  5. $xml = simplexml_load_string($data); 
  6. header("Content-type: text/xml"); 
  7. echo $xml->asXML(); 
  8.  
  9. // 生成XML数据 
  10. function createXml($city
  11.     // Google 天气API 
  12.     $weather = simplexml_load_file("http://www.google.com/ig/api?weather={$city}"); 
  13.     if(isset($weather->weather->forecast_conditions)) 
  14.     { 
  15.         $low = f2c($weather->weather->forecast_conditions->low['data']); 
  16.         $high = f2c($weather->weather->forecast_conditions->high['data']); 
  17.         return "<weather>n<city>{$city}</city>n<low>{$low}</low>n<high>{$high}</high></weather>n"
  18.     } 
  19.     else 
  20.     { 
  21.         return "<weather>n</weather>n"
  22.     } 
  23.  
  24. // 华氏度转摄氏度 
  25. function f2c($fahrenhite
  26.     return floor(($fahrenhite - 32) / 1.8); 

客户端 c.php,代码如下:

  1. <html> 
  2. <head> 
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
  4. <title>天气查询</title> 
  5. </head> 
  6. <body> 
  7. <form method="post" action=""
  8. <select name="city"
  9. <option value="0">请选择</option> 
  10. <option value="beijing">北京</option> 
  11. <option value="shanghai">上海</option> 
  12. <option value="guangzhou">广州</option> 
  13. <option value="wuhan">武汉</option> 
  14. </select> 
  15. <input type="submit" /> 
  16. </form> 
  17. <?php 
  18. if(!emptyempty($_POST['city'])) 
  19.     $city = $_POST['city']; 
  20.     $xml = simplexml_load_file("http://127.0.0.1/rest/se.php?city={$city}"); 
  21.     $html = "<p>City:{$xml->city}</p>n"
  22.     $html .= "<p>Low:{$xml->low}</p>n"
  23.     $html .= "<p>High:{$xml->high}</p>n"
  24.     echo $html
  25. ?> 
  26. </body> 
  27. </html>  
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容