- 论坛徽章:
- 0
|
我想采集yahoo weather的天气数据,地址如下:
http://xml.weather.yahoo.com/forecastrss?p=CHXX0100&u=c
但是我看了expat的教程代码:
- $xml_file = "http://xml.weather.yahoo.com/forecastrss/CHXX0434_c.xml";
- $parser = xml_parser_create();
- xml_set_element_handler($parser, "startElement", "endElement");
- xml_set_character_data_handler($parser, "characterData");
- $filehandler = fopen($xml_file, "r");
- while ($data = fread($filehandler, 4096)) {
- xml_parse($parser, $data, feof($filehandler));
- }
- fclose($filehandler);
- xml_parser_free($parser);
- function startElement($parser_instance, $element_name, $attrs) {
- switch($element_name) {
- case “URL” : echo “<tr><td><a href=””;
- break;
- case “SUMMARY” : echo “<td>”;
- break;
- }
- }
- function characterData($parser_instance, $xml_data) {
- echo $xml_data;
- }
-
- function endElement($parser_instance, $element_name) {
- switch($element_name) {
- case “URL” : echo “”>”;
- break;
- case “TITLE” : echo “</a></td>”;
- break;
- case “SUMMARY” : echo “</td></tr>”;
- break;
- }
- }
复制代码
还是不知道怎么把这段代码改成,从而能把该地址里的标签
- <yweather:location city="Nanning" region="" country="CH" />
- <yweather:units temperature="C" distance="km" pressure="mb" speed="kph" />
- <yweather:wind chill="27" direction="0" speed="3" />
- <yweather:atmosphere humidity="70" visibility="999" pressure="0" rising="2" />
- <yweather:astronomy sunrise="6:50 am" sunset="6:59 pm" />
复制代码
等数据用PHP读出来,谢谢 请帮帮偶~~ |
|