2015-04-28 67 views
0

我的服務器在cookie value中添加了slashes。請幫我解決這個問題。我的服務器自動添加了

current cookie value是這樣的,

{\"pId\":\"7\",\"unit\":\"1\",\"uniqueId\":1430215177,\"color\":\"\",\"size\":\"\"} 

但我希望它是這樣的,

{"pId":"7","unit":"1","uniqueId":1430215943,"color":"","size":""} 
+1

的stripslashes - 或在Google – Frank

+0

上花費一些時間,請使用此解決方案:http:// stackove rflow.com/a/3117830/724913 – arkoak

+1

可能重複[防止使用parse \ _str時自動添加斜線](http://stackoverflow.com/questions/3117512/prevent-automatic-add-slashes-while-using-parse -str) – arkoak

回答

0

可以使用stripslashes功能可在PHP這樣的:

$jsonString = " {\"pId\":\"7\",\"unit\":\"1\",\"uniqueId\":1430215177,\"color\":\"\",\"size\":\"\"}" 
stripslashes($jsonString); 
相關問題