可以删除HTML中的<script>……</script>内容,包罗<script>,过滤script代码淘汰错误。
代码如下
<?php function delJS($html) { $search = '~<script[^>]*?>.*?</script>~si'; return preg_replace($search,'',$html); } $html = file_get_contents('html/test.html'); echo delJS($html); ?>end