Home > Backend Development > PHP Tutorial > 请教一个json传输和解码的问题

请教一个json传输和解码的问题

WBOY
Release: 2016-06-23 13:58:22
Original
810 people have browsed it

ios的客户端将信息编码成json发给服务器, json字符串是{"date":"2999-01-01 00:00:00"} , 使用post方式传给服务器

用一台服务器测试时,发现收到的字符串为 {\"date\":\"2999-01-01 00:00:00\"}, 这时使用json_decode 函数可以正常的解码

但有一次我换了一台服务器, 发现在这台服务器上收到的字符串为 {\\\"date\\\":\\\"2999-01-01 00:00:00\\\"} , 用 json_decode  解码的结果就是错的。

请问为什么客户端传输同样的字符串在不同的web服务器上表现不同,第一种情况是我需要的,需要如何配置呢?

谢谢!


回复讨论(解决方案)

 $json = "{\\\"date\\\":\\\"2999-01-01 00:00:00\\\"}"; var_dump(json_decode(stripcslashes($json)));//将转义符去掉
Copy after login
Copy after login

 $json = "{\\\"date\\\":\\\"2999-01-01 00:00:00\\\"}"; var_dump(json_decode(stripcslashes($json)));//将转义符去掉
Copy after login
Copy after login



大赞! 谢谢!
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template