Home  >  Article  >  Backend Development  >  请问一个json传输和解码的有关问题

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

WBOY
WBOYOriginal
2016-06-13 11:55:26843browse

请教一个json传输和解码的问题
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\\\"}";<br /> var_dump(json_decode(stripcslashes($json)));//将转义符去掉

Statement:
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