PHP - 删除字符串中 HTML 标签的效果 - 但也显示它们?
考虑 strip_tags()
。
strip_tags("<b>TEXT</b>");
输出:
文本
但是如果我想取消标签的效果但同时显示它们怎么办?
输出:
文本
我必须使用 preg_replace()
吗?或者有更优雅的解决方案吗?
谢谢:D
Consider strip_tags()
.
strip_tags("<b>TEXT</b>");
Output:
TEXT
But what if i want to nullify the effect of the tags but display them as well?
Output:
<b>TEXT</b>
Would i have to use preg_replace()
? Or is there a more elegant solution available?
Thanks :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以通过 htmlspecialchars 对字符串进行 HTML 编码:
You can HTML encode the string via htmlspecialchars:
您可以使用 htmlspecialchars 或 html 实体。请务必检查 PHP 手册以确定最适合您的数据的方法,因为这两个函数的操作方式略有不同。
然后,您可以使用 htmlspecialchars_decode 和 html_entity_decode - 再次检查哪个最适合您的数据。
You can easily convert characters to their HTML entity using htmlspecialchars or htmlentities. Make sure you check the PHP manual to determine what is most appropriate to your data, as both functions operate slightly differently.
You can then reverse the encoding with htmlspecialchars_decode and html_entity_decode - again, check which is most appropriate for your data.
您总是可以将
<
替换为<
并将>
替换为>
,是的?You could always just replace
<
with<
and>
with>
, yeah?您可以使用文本区域标签,如下所示:
You can use textarea tag as following: