写出一个正则表达式,过虑网页上的所有JS/VBS脚本(即把script标记及其内容都去掉)

<?php
    header("content-type:text/html;charset=utf-8");
    $script = "以下内容不显示:<script type='text/javascript'>alert('cc');</script>";
    $pattern = '/<script[^>]*?>.*?<\/script>/si';
    echo preg_replace($pattern, "脚本内容", $script);//以下内容不显示:脚本内容
?>

更多:https://www.shanhubei.com/archives/55202.html

posted @ 2024-04-11 15:45  珊瑚贝博客  阅读(14)  评论(0编辑  收藏  举报