php正则
时间:2021-01-15 11:14:39|栏目:PHP代码|点击: 次
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合并数组array_merge函数运算符加号与的区别
栏 目:PHP代码
本文标题:php正则
本文地址:http://www.codeinn.net/misctech/45617.html