当前位置:首页 > PHP教程 > php应用 > 列表

php读取xml文件

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-21 10:04:09 浏览: 评论:0 
  1. <?php 
  2. $path = 'http://xxx.xxx.xxx/example.xml'
  3. $str = file_get_contents($path); 
  4. $str = <<<str 
  5. ... 
  6. <yw:cdtn text="Fair" code="34" temp="7" date="Thu, 10 Apr 2008 9:50 am BST" /> 
  7. ... 
  8. <yw:f day="Thu" date="10 Apr 2008" low="1" high="11" text="Light Rain" code="11" /> 
  9. <yw:f day="Fri" date="11 Apr 2008" low="1" high="10" text="Light Rain" code="11" /> 
  10. ... 
  11. str; //开源代码phpfensi.com
  12. preg_match('/<yw:cdtn.*text="(.*)"/iU'$str$arr); 
  13. echo $arr[1]; 
  14. preg_match_all('/<yw:f.*text="(.*)"/iU'$str$arr); 
  15. print_r($arr[1]); 
  16. ?> 

Tags: PHP读取xml文件 php读取xml文档

分享到: