PHP htmlspecialchars_decode()函数用法讲解
程序员文章站
2022-04-28 17:02:04
php htmlspecialchars_decode() 函数
实例
把预定义的 html 实体 "<"(小于)和 ">"(大于)转换为字符:...
php htmlspecialchars_decode() 函数
实例
把预定义的 html 实体 "<"(小于)和 ">"(大于)转换为字符:
<?php $str = "this is some <b>bold</b> text."; echo htmlspecialchars_decode($str); ?>
上面代码的 html 输出如下(查看源代码):
<!doctype html> <html> <body> this is some <b>bold</b> text. </body> </html>
上面代码的浏览器输出如下:
this is some **bold** text.
定义和用法
htmlspecialchars_decode()
函数把一些预定义的 html 实体转换为字符。
会被解码的 html 实体是:
- & 解码成 & (和号)
- " 解码成 " (双引号)
- ' 解码成 ' (单引号)
- < 解码成 < (小于)
- > 解码成 > (大于)
htmlspecialchars_decode()
函数是 htmlspecialchars() 函数的反函数。
语法
htmlspecialchars_decode( _string,flags_ )
实例 1
把一些预定义的 html 实体转换为字符:
<?php $str = "jane & 'tarzan'"; echo htmlspecialchars_decode($str, ent_compat); // 默认,仅解码双引号 echo "<br>"; echo htmlspecialchars_decode($str, ent_quotes); // 解码双引号和单引号 echo "<br>"; echo htmlspecialchars_decode($str, ent_noquotes); // 不解码任何引号 ?>
上面代码的 html 输出如下(查看源代码):
<!doctype html> <html> <body> jane & 'tarzan'<br> jane & 'tarzan'<br> jane & 'tarzan' </body> </html>
上面代码的浏览器输出如下:
jane & 'tarzan'
jane & 'tarzan'
jane & 'tarzan'
实例 2
把预定义 html 实体转换为双引号:
<?php $str = 'i love "php".'; echo htmlspecialchars_decode($str, ent_quotes); // 解码双引号和单引号 ?>
上面代码的 html 输出如下(查看源代码):
<!doctype html> <html> <body> i love "php". </body> </html>
上面代码的浏览器输出如下:
i love "php".
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: 各类常见语言清除网页缓存方法汇总
下一篇: 访客站点停留时间和页面停留时间的实现方案