$test = json_encode(array("test"=>"test / test"));
echo $test;
output: {"test":"test \/ test"}
Why ?
|
|
Because that's correct JSON. It also helps when embedding e.g. |
|||||
|
|
Because that's the way json_encode encode! If you do json_decode() on that string the escape char will have disappeared. |
|||
|
|