我想用正则过滤JS里代码,但是总是写不好!
比如 <script>function tt () {xffdfdfdfdfd}</script> 要用正则过滤成这样<script}</script> 。
我想用正则过滤JS里代码,但是总是写不好!
比如 <script>function tt () {xffdfdfdfdfd}</script> 要用正则过滤成这样<script}</script> 。
<?php $str='<script>function tt () {xffdfdfdfdfd}</script>'; $str=preg_replace("/<script([^>]*)>(.*)<\/script>/i","<script></script>",$str); echo $str; ?>
看效果时 需要查看源文件,因为这标签在浏览器上显示是空白的