The reason for this "escapes" me.
JSON escapes the forward slash, so a hash {a: "a/b/c"} is serialized as {"a":"a\/b\/c"} instead of {"a":"a/b/c"}.
Why?
|
The reason for this "escapes" me. JSON escapes the forward slash, so a hash Why? |
|||
|
JSON doesn't require you to do that, it allows you to do that. It also allows you to use "\u0061" for "A", but it's not required. Allowing Some of Microsoft's ASP.NET Ajax/JSON API's use this loophole to add extra information, e.g., a datetime will be sent as |
|||||||||||||||||||||
|
|
This is because HTML does not allow a string inside a |
|||||||||||||||
|
|
The JSON spec says you CAN escape forward slash, but you don't have to. |
|||||||||||||||||
|
|
I asked the same question some time ago and had to answer it myself. Here's what I came up with:
|
|||||||||
|
json_encode()escapes forward slashes by default, but has theJSON_UNESCAPED_SLASHESoption starting from PHP 5.4.0 (March 2012) – Walter Tross Jul 1 '12 at 19:52'</':echo str_replace('</', '<\/', json_encode($obj, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES));– rustyx Jan 20 at 13:52