我们会看到很多网站都可以实时的显示当时当地的天气,下面我来告诉你这种实时天气的做吧,利用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>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>天气查询</title>
- </head>
- <body>
- <form method="post" action="">
- <select name="city">
- <option value="0">请选择</option>
- <option value="beijing">北京</option>
- <option value="shanghai">上海</option>
- <option value="guangzhou">广州</option>
- <option value="wuhan">武汉</option>
- </select>
- <input type="submit" />
- </form>
- <?php
- if(!emptyempty($_POST['city']))
- {
- $city = $_POST['city'];
- $xml = simplexml_load_file("http://127.0.0.1/rest/se.php?city={$city}");
- $html = "<p>City:{$xml->city}</p>n";
- $html .= "<p>Low:{$xml->low}</p>n";
- $html .= "<p>High:{$xml->high}</p>n";
- echo $html;
- }
- ?>
- </body>
- </html>
波比源码 – 精品源码模版分享 | www.bobi11.com
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是赞助,收取费用仅维持本站的日常运营所需!
7. 本站源码并不保证全部能正常使用,仅供有技术基础的人学习研究,请谨慎下载
8. 如遇到加密压缩包,请使用WINRAR解压,如遇到无法解压的请联系管理员!
波比源码 » php获取google当前天气实现程序
波比源码 » php获取google当前天气实现程序