PHP 反斜杠问题
我有一台本地开发机器和一台网络服务器。奇怪的是,当我在开发计算机上使用 stripslashes 时,所有斜杠都会被删除,并且当我将相同的代码上传到网络服务器时,即使我使用 stripslashes,我也会看到转义字符。有人有主意吗?
I have a development machine that is local and a server out on the net. Weird thing is that when I use stripslashes on my development machine, all slashes are removed and when I upload the same code to the net server, I see the escape character even though I am using stripslashes. Anyone have any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是魔术引号。在处理数据之前尝试禁用或删除它们。
This could be Magic Quotes. Try to disable them or remove them before processing the data.
也许手册页上的注释所说的可能是问题所在。
Perhaps what the note says on the manual page might be the problem.