php正则
作者:bea
1修饰符:好象没有讲 2匹配模式好象有些少 比如<?php $cp=preg_replace("@<script(.*?)</script>@is","",$cp); $cp=preg_replace("@<iframe(.*?)</iframe>@is","",$cp); $cp=preg_replace("@<style(.*?)</style>@is","",$cp); ?>出现"@<script(
1 修饰符:好象没有讲
2 匹配模式好象有些少
比如<?php
$cp = preg_replace( "@<script(.*?)</script>@is", "", $cp );
$cp = preg_replace( "@<iframe(.*?)</iframe>@is", "", $cp );
$cp = preg_replace( "@<style(.*?)</style>@is", "", $cp );
?>出现"@<script(.*?)</script>@我就迷糊
希望得到帮助,多谢
"@<script(.*?)</script>@
非贪婪模式,意思是匹配<script之后第一个<之间的东西,等价于@<script([^>]*)</script>@
有时候需要[^>]+?获取精确匹配。
猜你喜欢
您可能感兴趣的文章:
- PHP.MVC的模板标签系统(五)
- PHP.MVC的模板标签系统(四)
- PHP.MVC的模板标签系统(三)
- PHP.MVC的模板标签系统(二)
- PHP.MVC的模板标签系统(一)
- apache+mysql+php+ssl服务器之完全安装攻略
- Windows下PHP5和Apache的安装与配置
- 玩转图像函数库—常见图形操作
- 转换中文为unicode 转换unicode到正常文本
- 生成静态页面的PHP类
- 删除无限级目录与文件代码共享
- PHP的十个高级技巧(上中下)
- 最令PHP初学者头痛的十四个问题
- WinXP + Apache +PHP5 + MySQL + phpMyAdmin安装全功略
- PHP初学者头疼问题总结
- php计数器的设计与实现
- php分页函数
- 从零开始 教你如何搭建Discuz!4.1论坛(图)
- Php部分常见问题总结