PHP - 删除字符串中 HTML 标签的效果 - 但也显示它们?

发布于 2024-08-31 03:17:20 字数 334 浏览 3 评论 0原文

考虑 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

笔芯 2024-09-07 03:17:20

您可以通过 htmlspecialchars 对字符串进行 HTML 编码:

htmlspecialchars("<b>TEXT</b>");

You can HTML encode the string via htmlspecialchars:

htmlspecialchars("<b>TEXT</b>");
说谎友 2024-09-07 03:17:20

您可以使用 htmlspecialcharshtml 实体。请务必检查 PHP 手册以确定最适合您的数据的方法,因为这两个函数的操作方式略有不同。

然后,您可以使用 htmlspecialchars_decodehtml_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.

初见你 2024-09-07 03:17:20

您总是可以将 < 替换为 < 并将 > 替换为 >,是的?

You could always just replace < with < and > with >, yeah?

风吹过旳痕迹 2024-09-07 03:17:20

您可以使用文本区域标签,如下所示:

<textarea rows="5" cols="20"><?php echo "<b>Text<b>"; ?></textarea>

You can use textarea tag as following:

<textarea rows="5" cols="20"><?php echo "<b>Text<b>"; ?></textarea>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文