SyntaxFix
Write A Post
Hire A Developer
Questions
Hmmm $array = json_decode($json, true); will make your string an array which is easy to print nicely with print_r($array, true);
$array = json_decode($json, true);
print_r($array, true);
But if you really want to prettify your json... Check this out