[Solved] How to remove double quotes from json {“x”:”y”} to {x:y} in php [closed]


If you just need to remove ” from a string you can use the str_replace method.

$new_str = str_replace("\"", "", json);

I hope I was helpful.

4

solved How to remove double quotes from json {“x”:”y”} to {x:y} in php [closed]