惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
博客园_首页
G
Google Developers Blog
博客园 - 【当耐特】
美团技术团队
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
小众软件
小众软件
博客园 - 司徒正美
雷峰网
雷峰网
T
Tailwind CSS Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
罗磊的独立博客
量子位
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog

Html on 轻风云

「推荐」很萌的404动画响应式页面 二次元导航网源码
php显示html源代码函数
2018-05-10 · via Html on 轻风云

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

1
2
3
4
5
6
7
8
9
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);
    }