美文网首页
php 代替htmlspecialchars的函数 保证安全的前

php 代替htmlspecialchars的函数 保证安全的前

作者: WireRope | 来源:发表于2019-01-11 13:42 被阅读0次
    function editor_safe_replace($content){
        $tags = array(
            "'<iframe[^>]*?>.*?</iframe>'is",
            "'<frame[^>]*?>.*?</frame>'is",
            "'<script[^>]*?>.*?</script>'is",
            "'<head[^>]*?>.*?</head>'is",
            "'<title[^>]*?>.*?</title>'is",
            "'<meta[^>]*?>'is",
            "'<link[^>]*?>'is",
        );
        return preg_replace($tags, "", $content);
    }
    

    相关文章

      网友评论

          本文标题:php 代替htmlspecialchars的函数 保证安全的前

          本文链接:https://www.haomeiwen.com/subject/yakxdqtx.html