mysqli real_escape_string 问题
当我插入到我的开发服务器上的数据库时,文本运行良好,例如“that's”在数据库中是“that's”。
当将完全相同的代码上传到生产服务器(托管在bluehost的经销商帐户上)时,“that's”变成“that\'s”,
我没有双重转义,它的代码完全相同,这里可能有什么问题?
When im inserting to the database on my dev server the text goes in fine, for example "that's" is "that's" in the db.
when uploading the exact same code to production server (hosted on a reseller account at bluehost) "that's" becomes "that\'s",
im not double escaping, its exactly the same code, what could be the issue here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
生产服务器可能启用了Magic Quotes。请参阅有关禁用它的页面,了解修复它的各种选项。
The production server probably has Magic Quotes enabled. See the page about disabling it for various options to fix it.