php显示html源代码函数

Anderyly
2018-05-10 / 0 评论 / 17 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2024年02月27日,已超过268天没有更新,若内容或图片失效,请留言反馈。

如果你想在后台更改页面底部代码,而其中有html代码,输入框显示不出源代码,pre标签又没有用,那么你不防试试下面的函数

    function UNHTML($content){
        $content=htmlspecialchars($content);
        $content=str_ireplace(chr(13),"<br>",$content);
        $content=str_ireplace(chr(32)," ",$content);
        $content=str_ireplace("[_[","<",$content);
        $content=str_ireplace(")_)",">",$content);
        $content=str_ireplace("|_|"," ",$content);
        return trim($content);
    }
0

评论 (0)

取消