我的服务器自动添加

时间:2015-04-28 10:35:13

标签: php cookies server addslashes

我的服务器在 *hl-IncSearch* IncSearch 'incsearch' highlighting; also used for the text replaced with ":s///c" 中添加了slashes。请帮我解决这个问题。

cookie value就是这样,

current cookie value

但我希望它像这样,

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

1 个答案:

答案 0 :(得分:0)

您可以使用php中提供的stripslashes功能:

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