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

推荐订阅源

雷峰网
雷峰网
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
U
Unit 42
罗磊的独立博客
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
Hugging Face - Blog
Hugging Face - Blog
大猫的无限游戏
大猫的无限游戏
F
Fortinet All Blogs
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
博客园 - 【当耐特】
H
Help Net Security
The GitHub Blog
The GitHub 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);
    }