remove slashes from json php

Solutions on MaxInterview for remove slashes from json php by the best coders in the world

showing results for - "remove slashes from json php"
Giovanni
29 Mar 2018
1json_decode($val, true, JSON_UNESCAPED_SLASHES);
Vincent
20 Jan 2020
1echo stripslashes('{\"test\":{\"test1\":{\"test1\":[{\"test2\":\"1\",\"test3\": \"foo\",\"test4\":\"bar\",\"test5\":\"test7\"}]}}}');
2