php获取google当前天气实现程序
se.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 "
}
else
{
return "
}
}
// 华氏度转摄氏度
function f2c($fahrenhite)
{
return floor(($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 = " City:{$xml->city} n";$html .= " Low:{$xml->low} n";$html .= " High:{$xml->high} n";echo $html; } ?> |
文章地址:
转载随意^^请带上本文地址!
推荐阅读
-
php获取google当前天气实现程序
-
php ajax实现无刷新获取天气状态
-
用PHP函数memory_get_usage获取当前PHP内存消耗量以实现程序的性能优化
-
php获取google当前天气实现程序_PHP教程
-
基于tp5小程序登录的实现 demo版本 获取code 返回token 解密微信数据信息 和验证数据来源真实性(包含小程序前端和php后端代码 )
-
PHP获取汉字的拼音字母实现程序_PHP教程
-
PHP获取当前页面完整URL的实现代码
-
php 获取当前时间的毫秒数程序代码
-
PHP获取当前页面完整URL的实现代码_PHP教程
-
微信小程序使用map组件实现获取定位城市天气或者指定城市天气数据功能