寫出一個正規表示式,過慮網頁上的所有JS/VBS指令碼(即把script標記及其內容都去掉)

珊瑚贝博客發表於2024-04-11
<?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

相關文章