php html_entity_decode实例教程
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-20 11:23:01 浏览: 评论:0
关于html_entity_decode在大多数情况下是与htmlspecialchars htmlentities配合使用的.
html_entity_decode用法:
string html_entity_decode(string $string [,int $quote_style = ENT_COMPAT [, string $charset ]]).
html_entity_decode() 函数把 HTML 实体转换为字符.
html_entity_decode() 是 htmlentities() 的反函数也html_entity_decode() 是 htmlspecialchars() 的反函数.
- $str = "A 'quote' is bold www.phpfensi.com";
- Outputs: A 'quote' is <b>bold</b>
- $s = htmlspecialchars($str);
- echo $s;
- Outputs: A 'quote' is <b>boldwww.111cn.net</b>
- echo html_entity_decode($s);
- A 'quote' is bold
再看一个实例,代码如下:
- $str = "John & 'Adams'";
- echo html_entity_decode($str);
- echo "
";- echo html_entity_decode($str, ENT_QUOTES);
- echo "
";- echo html_entity_decode($str, ENT_NOQUOTES);
- ?>//开源代码phpfensi.com
- //浏览器输出:
- John & 'Adams'
- John & 'Adams'
- John & 'Adams'
如果在浏览器中查看源代码,会看到这些 HTML:
- <html>
- <body>
- John & 'Adams'<br />
- John & 'Adams'<br />
- John & 'Adams'
- body>
- html>
Tags: html_entity_decode htmlspecialchars
- 上一篇:php chdir() 函数
- 下一篇:php explode函数实例教程
相关文章
- ·php中htmlspecialchars,htmlentities用法(2014-09-14)
- ·php过滤htmlspecialchars() 函数实现把预定义的字符转换为 HTML 实体用法分析(2021-11-28)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)