php ereg()把htm转换成xml文件实现方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-18 17:18:08 浏览: 评论:0
php ereg()把htm转换成xml文件实现方法
语法:int ereg(string pattern, string string, array [regs]);
返回值:整数/数组
- <?php
- $text = "<p>This is some text here "</p>".</p>";
- ereg("<p>(([^<"]|[^<]*<[^/][^<])*("[^"]*"([^<"]|[^<]*<[^/][^<])*)*)?</p>", $text, $matches); //开源代码phpfensi.com
- echo "Found text: " . $matches[1] . "n";
- ?>
内容说明:
本函数以 pattern 的规则来解析比对字符串 string,比对结果返回的值放在数组参数 regs 之中,regs[0] 内容就是原字符串 string、regs[1] 为第一个合乎规则的字符串、regs[2] 就是第二个合乎规则的字符串,余类推,若省略参数 regs,则只是单纯地比对,找到则返回值为 true.
Tags: ereg htm转换成xml
相关文章
- ·php5.3提示Function ereg() is deprecated Error问题(2014-09-13)
- ·php5.3提示Function ereg() is deprecated Error问题解决方法(2021-04-25)
- ·php 升级到 5.3+ 后出现的一些错误,如 ereg(); ereg_replace(); 函数报错(2021-06-28)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)