以解析Google api 接口提供的天气情况为例,我们取今天的天气及气温。API地址:http://www.google.com/ig/api?weather=shenzhen
XML文件内容
<?xml version="1.0"?> <xml_api_reply version="1"> <weather module_id="0" tab_id="0" mobile_row="0" mobile_zipped="1" row="0" section="0" > <forecast_information> <city data="Shenzhen, Guangdong"/> <postal_code data="shenzhen"/> <latitude_e6 data=""/> <longitude_e6 data=""/> <forecast_date data="2009-10-05"/> <current_date_time data="2009-10-04 05:02:00 +0000"/> <unit_system data="US"/> </forecast_information> <current_conditions> <condition data="Sunny"/> <temp_f data="88"/> <temp_c data="31"/> <humidity data="Humidity: 49%"/> <icon data="/ig/images/weather/sunny.gif"/> <wind_condition data="Wind: mph"/> </current_conditions> </weather> </xml_api_reply>
<?PHP header("Content-type:text/html; Charset=utf-8"); $url = "http://www.google.com/ig/api?weather=shenzhen"; // 加载XML内容 $content = file_get_contents($url); $content = get_utf8_string($content); $dom = DOMDocument::loadXML($content); /* 此处也可使用如下所示的代码, $dom = new DOMDocument(); $dom->load($url); */ $elements = $dom->getElementsByTagName("current_conditions"); $element = $elements->item(0); $condition = get_google_xml_data($element, "condition"); $temp_c = get_google_xml_data($element, "temp_c"); echo ‘天气:‘, $condition, ‘<br />‘; echo ‘温度:‘, $temp_c, ‘<br />‘; function get_utf8_string($content) { // 将一些字符转化成utf8格式 $encoding = mb_detect_encoding($content, array(‘ASCII‘,‘UTF-8‘,‘GB2312‘,‘GBK‘,‘BIG5‘)); return mb_convert_encoding($content, ‘utf-8‘, $encoding); } function get_google_xml_data($element, $tagname) { $tags = $element->getElementsByTagName($tagname); // 取得所有的$tagname $tag = $tags->item(0); // 获取第一个以$tagname命名的标签 if ($tag->hasAttributes()) { // 获取data属性 $attribute = $tag->getAttribute("data"); return $attribute; }else { return false; } } ?>
这只是一个简单的示例,仅包括了loadXML, item, getAttribute,getElementsByTagName等方法,还有一些有用的方法,这个依据你的实际需要。
<?PHP header("Content-type:text/html; Charset=utf-8"); $url = "http://www.google.com/ig/api?weather=shenzhen"; // 加载XML内容 $xml = new XMLReader(); $xml->open($url); $condition = ‘‘; $temp_c = ‘‘; while ($xml->read()) { // echo $xml->name, "==>", $xml->depth, "<br>"; if (!empty($condition) && !empty($temp_c)) { break; } if ($xml->name == ‘condition‘ && empty($condition)) { // 取第一个condition $condition = $xml->getAttribute(‘data‘); } if ($xml->name == ‘temp_c‘ && empty($temp_c)) { // 取第一个temp_c $temp_c = $xml->getAttribute(‘data‘); } $xml->read(); } $xml->close(); echo ‘天气:‘, $condition, ‘<br />‘; echo ‘温度:‘, $temp_c, ‘<br />‘;
我们只是需要取第一个condition和第一个temp_c,于是遍历所有的节点,将遇到的第一个condition和第一个temp_c写入变量,最后输出。
<?PHP header("Content-type:text/html; Charset=utf-8"); $url = "http://www.google.com/ig/api?weather=shenzhen"; // 加载XML内容 $dom = new DOMDocument(); $dom->load($url); $xpath = new DOMXPath($dom); $element = $xpath->query("/xml_api_reply/weather/current_conditions")->item(0); $condition = get_google_xml_data($element, "condition"); $temp_c = get_google_xml_data($element, "temp_c"); echo ‘天气:‘, $condition, ‘<br />‘; echo ‘温度:‘, $temp_c, ‘<br />‘; function get_google_xml_data($element, $tagname) { $tags = $element->getElementsByTagName($tagname); // 取得所有的$tagname $tag = $tags->item(0); // 获取第一个以$tagname命名的标签 if ($tag->hasAttributes()) { // 获取data属性 $attribute = $tag->getAttribute("data"); return $attribute; }else { return false; } } ?>
该函数将 XML 文件解析到两个对应的数组中,index 参数含有指向 values 数组中对应值的指针。最后两个数组参数可由指针传递给函数。
注意: xml_parse_into_struct() 失败返回 0,成功返回 1。这和 FALSE 与 TRUE 不同,使用例如 === 的运算符时要注意。
<?PHP header("Content-type:text/html; Charset=utf-8"); $url = "http://www.google.com/ig/api?weather=shenzhen"; // 加载XML内容 $content = file_get_contents($url); $p = xml_parser_create(); xml_parse_into_struct($p, $content, $vals, $index); xml_parser_free($p); echo ‘天气:‘, $vals[$index[‘CONDITION‘][0]][‘attributes‘][‘DATA‘], ‘<br />‘; echo ‘温度:‘, $vals[$index[‘TEMP_C‘][0]][‘attributes‘][‘DATA‘], ‘<br />‘;
// Charset: utf-8
/**
* 用php Simplexml 调用google天气预报api,和g官方的例子不一样
* google 官方php domxml 获取google天气预报的例子
* http://www.google.com/tools/toolbar/buttons/intl/zh-CN/apis/howto_guide.html
*
* @copyright Copyright (c) 2008 <cmpan(at)qq.com>
* @license New BSD License
* @version 2008-11-9
*/
// 城市,用城市拼音
$city = empty($_GET[‘city‘]) ? ‘shenzhen‘ : $_GET[‘city‘];
$content = file_get_contents("http://www.google.com/ig/api?weather=$city&hl=zh-cn");
$content || die("No such city‘s data");
$content = mb_convert_encoding($content, ‘UTF-8‘, ‘GBK‘);
$xml = simplexml_load_string($content);
$date = $xml->weather->forecast_information->forecast_date->attributes();
$html = $date. "<br>\r\n";
$current = $xml->weather->current_conditions;
$condition = $current->condition->attributes();
$temp_c = $current->temp_c->attributes();
$humidity = $current->humidity->attributes();
$icon = $current->icon->attributes();
$wind = $current->wind_condition->attributes();
$condition && $condition = $xml->weather->forecast_conditions->condition->attributes();
$icon && $icon = $xml->weather->forecast_conditions->icon->attributes();
$html.= "当前: {$condition}, {$temp_c}°C,<img src=‘http://www.google.com/ig{$icon}‘/> {$humidity} {$wind} <br />\r\n";
foreach($xml->weather->forecast_conditions as $forecast) {
$low = $forecast->low->attributes();
$high = $forecast->high->attributes();
$icon = $forecast->icon->attributes();
$condition = $forecast->condition->attributes();
$day_of_week = $forecast->day_of_week->attributes();
$html.= "{$day_of_week} : {$high} / {$low} °C, {$condition} <img src=‘http://www.google.com/ig{$icon}‘ /><br />\r\n";
}
header(‘Content-type: text/html; Charset: utf-8‘);
print $html;
?>
我们经常将数据存储在XML 中,在展示的时候需要转换为其它的形式,这里介绍使用XSLT 对XML数据进行转换。要学习XSLT对XML的转换,需要先了解三个文件。
XML 指可扩展标记语言(EXtensible Markup Language)。XML不会做任何事情,XML被设计用来结构化、存储以及传输信息。我们需要编写软件或者程序,才能传送、接收和显示出这个文档。
随着json等一些技术的普及,似乎xml的路子越来越窄,虽然xml的一些功能被其他的一些技术代替,但是学习xml还是非常有必要,如果用xml存储一些大量数据,还是有一定优势的,就算你不管这
XPath 是一门在 XML 文档中查找信息的语言,可用来在 XML 文档中对元素和属性进行遍历。XPath 是 W3C XSLT 标准的主要元素,并且 XQuery 和 XPointer 同时被构建于 XPath 表达之上。因此,对 XPath 的理解是很多高级 XML 应用的基础
处理指令(PIs)允许文档包含用于应用程序的指令。指令并不是文档字符数据的一部分,但是必须通过应用程序传递。 处理指令可以用于将信息传递给应用程序。处理指令可以出现在文档任意位置的标记外部。可以出现在序言中
XML:可扩展标记语言,XML的标签是没有被定义过的,需要自行定义,宗旨是做数据传递,而不是做数据展示;1、xml文件最顶端做声明2、所有标记必须成对出现(没有单标记)3、严格区分大小写
JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,它完全独立于语言。它基于JavaScript编程语言,易于理解和生成。XML(可扩展标记语言)旨在传输数据,而不是显示数据。这是W3C的推荐。
javascript读取xml的方法:使用DOMParser对象解析XML文本并返回一个XML Document对象。然后调用parseFromString()方法读取。
JavaScript是一种属于网络的脚本语言,通常通过嵌入在HTML中来实现自身的功能。XML文件格式是纯文本格式,在许多方面类似于HTML,XML由XML元素组成。
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。 易于人阅读和编写。同时也易于机器解析和生成。 它基于JavaScript Programming Language
内容以共享、参考、研究为目的,不存在任何商业目的。其版权属原作者所有,如有侵权或违规,请与小编联系!情况属实本人将予以删除!