Created
December 5, 2011 14:38
-
-
Save gboudreau/1433784 to your computer and use it in GitHub Desktop.
JSON pretty-print from the command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/php | |
<?php | |
echo json_format(file_get_contents('php://stdin')) . "\n"; | |
// Pretty print some JSON | |
function json_format($json) | |
{ | |
$tab = " "; | |
$new_json = ""; | |
$indent_level = 0; | |
$in_string = false; | |
$json_obj = json_decode($json); | |
if($json_obj === false) | |
return false; | |
$json = json_encode($json_obj); | |
$len = strlen($json); | |
for($c = 0; $c < $len; $c++) | |
{ | |
$char = $json[$c]; | |
switch($char) | |
{ | |
case '{': | |
case '[': | |
if(!$in_string) | |
{ | |
$new_json .= $char . "\n" . str_repeat($tab, $indent_level+1); | |
$indent_level++; | |
} | |
else | |
{ | |
$new_json .= $char; | |
} | |
break; | |
case '}': | |
case ']': | |
if(!$in_string) | |
{ | |
$indent_level--; | |
$new_json .= "\n" . str_repeat($tab, $indent_level) . $char; | |
} | |
else | |
{ | |
$new_json .= $char; | |
} | |
break; | |
case ',': | |
if(!$in_string) | |
{ | |
$new_json .= ",\n" . str_repeat($tab, $indent_level); | |
} | |
else | |
{ | |
$new_json .= $char; | |
} | |
break; | |
case ':': | |
if(!$in_string) | |
{ | |
$new_json .= ": "; | |
} | |
else | |
{ | |
$new_json .= $char; | |
} | |
break; | |
case '"': | |
if($c > 0 && $json[$c-1] != '\\') | |
{ | |
$in_string = !$in_string; | |
} | |
default: | |
$new_json .= $char; | |
break; | |
} | |
} | |
return $new_json; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment