PHP 从 JSON 中删除反斜杠字符
将 JSON 保存到数据库时,PHP 会删除 JSON 中的所有反斜杠字符。我没有正确识别问题。如何摆脱这个问题?我想保存提供给 PHP 的 JSON 吗?
PHP removes all backslash characters from JSON when saving it to DB. I don'y correctly identified the problem. How to get rid off this problem? I want to save the JSON as it provided to PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确定是 PHP 删除了反斜杠吗?我宁愿认为:
mysql_real_escape_string
)。Are you sure it's PHP that is removing the backslashes? I rather think that:
mysql_real_escape_string
).只需在
\
之前再添加一个\
即可simply u can put one more
\
before\