禁止在文本区域表单字段中发布 HTML

发布于 2024-12-07 21:17:03 字数 106 浏览 0 评论 0原文

我有一个文本区域,用户可以在其中定义帖子。该字段应允许 BBCODE 但不允许 HTML。

目前 HTML 是允许的,但不应该是。

如何禁止用户发布 HTML 标签?

I have a text area where a user can define a post. This field should allow BBCODE but not HTML.

Currently HTML is allowed but it should not be.

How can I disallow HTML tags to be posted by the user?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

不即不离 2024-12-14 21:17:03

这里有两个主要选择。您可以转义 HTML,将其视为纯文本,也可以将其删除。无论哪种方式都是安全的,但转义通常是用户所期望的。

要转义,请使用 htmlspecialchars() [docs] 在处理 bbcode 之前输入。

echo htmlspecialchars("<b>Hello [i]world![/i]</b>")
<b>Hello [i]world![/i]</b>

要完全删除 HTML 标签,请使用 strip_tags() [docs] 相反:

echo strip_tags("<b>Hello [i]world![/i]</b>")
Hello [i]world![/i]

There are two main choices here. You can either escape the HTML, so it's treated as plain text, or you can remove it. Either way is safe, but escaping is usually what users expect.

To escape, use htmlspecialchars() [docs] on the input, before you process the bbcode.

echo htmlspecialchars("<b>Hello [i]world![/i]</b>")
<b>Hello [i]world![/i]</b>

To remove the HTML tags entirely, use strip_tags() [docs] instead:

echo strip_tags("<b>Hello [i]world![/i]</b>")
Hello [i]world![/i]
无畏 2024-12-14 21:17:03

我认为你应该使用 strip_tags() 它会去除 html 标签和内容。保留文本但保留 BBcode。

I think you should use strip_tags() it will strip html tags & preserve the text but leave BBcode.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文