您的当前位置:首页php 过滤<script></script&

php 过滤<script></script&

2024-12-09 来源:哗拓教育

$line="111<script>asdfkjasdklfjaksdfjl;asdfkl</script>222";

$a=preg_replace_callback(

    '/<script[\s\S]*?<\/script>/',

    function ($matches) {

        return strtolower($matches[0]);

    },

    $line

);

显示全文