Skip to content

Instantly share code, notes, and snippets.

@cam-gists
Created August 30, 2012 16:15
Show Gist options
  • Save cam-gists/3532096 to your computer and use it in GitHub Desktop.
Save cam-gists/3532096 to your computer and use it in GitHub Desktop.
PHP: Pretty Print JSON
<?php
echo "<pre>";
$pattern = array(',"', '{', '}');
$replacement = array(",\n\t\"", "{\n\t", "\n}");
echo str_replace($pattern, $replacement, $data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment