为什么 htmlspecialchars 在我的网页上添加斜杠?
我通过 PDO 准备好的语句将输入放入 mySQL 中,并使用 htmlspecialchars() 将其放入我的网站中,以防止 XSS。唯一的问题是现在我在任何引号之前得到斜杠,这些斜杠在网页上对用户可见只有当我将其上传到服务器时才会发生。在我的本地主机上永远不会发生。
为什么会发生这种情况?
I have my input placed into mySQL through a PDO prepared statement, and have it placed in my website with PHP using htmlspecialchars() to protect against XSS. Only problem is now I get slashes, before any quotes, that are visible on the webpage to the user it only happens when I upload it to the server. Never happens on my localhost.
Why is this happening?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
服务器启用了魔术引号吗?
在 PHP 中尝试这一行来找出:
如果它们已启用,您可以使用
stripslashes
删除它们。The server has magic quotes enabled?
Try this line in PHP to find out:
If they are enabled, you can use
stripslashes
to remove them.