php读取xml文件
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-21 10:04:09 浏览: 评论:0
- <?php
- $path = 'http://xxx.xxx.xxx/example.xml';
- $str = file_get_contents($path);
- $str = <<<str
- ...
- <yw:cdtn text="Fair" code="34" temp="7" date="Thu, 10 Apr 2008 9:50 am BST" />
- ...
- <yw:f day="Thu" date="10 Apr 2008" low="1" high="11" text="Light Rain" code="11" />
- <yw:f day="Fri" date="11 Apr 2008" low="1" high="10" text="Light Rain" code="11" />
- ...
- str; //开源代码phpfensi.com
- preg_match('/<yw:cdtn.*text="(.*)"/iU', $str, $arr);
- echo $arr[1];
- preg_match_all('/<yw:f.*text="(.*)"/iU', $str, $arr);
- print_r($arr[1]);
- ?>
Tags: PHP读取xml文件 php读取xml文档
- 上一篇:php生成xml文件
- 下一篇:PHP防CC攻击与防止快速刷新页面例子
相关文章
- ·PHP如何读取xml文件?php读取xml文档例子(2014-08-20)
- ·php读取xml文件的三种实现方法(2014-08-20)
- ·php读取树型xml文件实现类(2014-08-20)
- ·如何在PHP中读取XML文件(2019-12-30)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)