免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1690 | 回复: 0
打印 上一主题 下一主题

请问怎么使用expat读取XML? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-03-22 15:37 |只看该作者 |倒序浏览
我想采集yahoo weather的天气数据,地址如下:
http://xml.weather.yahoo.com/forecastrss?p=CHXX0100&u=c

但是我看了expat的教程代码:

  1. $xml_file = "http://xml.weather.yahoo.com/forecastrss/CHXX0434_c.xml";
  2. $parser = xml_parser_create();
  3. xml_set_element_handler($parser, "startElement", "endElement");
  4. xml_set_character_data_handler($parser, "characterData");  
  5. $filehandler = fopen($xml_file, "r");
  6. while ($data = fread($filehandler, 4096)) {
  7.     xml_parse($parser, $data, feof($filehandler));
  8. }
  9. fclose($filehandler);
  10. xml_parser_free($parser);

  11. function startElement($parser_instance, $element_name, $attrs) {
  12.     switch($element_name) {
  13.         case “URL”     :    echo “<tr><td><a href=””;
  14.                             break;
  15.         case “SUMMARY” :    echo “<td>”;
  16.                             break;
  17.     }
  18. }


  19. function characterData($parser_instance, $xml_data) {
  20.     echo $xml_data;
  21. }

  22. function endElement($parser_instance, $element_name) {
  23.     switch($element_name) {
  24.         case “URL”     :    echo “”>”;
  25.                             break;
  26.         case “TITLE”   :    echo “</a></td>”;
  27.                             break;
  28.         case “SUMMARY” :    echo “</td></tr>”;
  29.                             break;
  30.    }
  31. }
复制代码

还是不知道怎么把这段代码改成,从而能把该地址里的标签

  1. <yweather:location city="Nanning" region="" country="CH" />
  2.   <yweather:units temperature="C" distance="km" pressure="mb" speed="kph" />
  3.   <yweather:wind chill="27" direction="0" speed="3" />
  4.   <yweather:atmosphere humidity="70" visibility="999" pressure="0" rising="2" />
  5.   <yweather:astronomy sunrise="6:50 am" sunset="6:59 pm" />
复制代码

等数据用PHP读出来,谢谢请帮帮偶~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP