Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文本区域,用户可以在其中输入帖子的文本。然后我在网站上显示数据。如何防止在结果中出现带有反斜杠的撇号?例如:
“我们开工吧”
将会:
您也许可以使用该功能stripslashes()。
stripslashes()
但是,禁用魔术引号和转义输入也是谨慎的。
禁用魔术引号。
在 HTML 的上下文中转义用户输入。
是的,禁用magicquotes 或strip slashes。
您还需要剥离标签。如果您不这样做,您的网站将很容易受到攻击。