Skip to content

Instantly share code, notes, and snippets.

@kriswema
Created September 17, 2012 08:21
Show Gist options
  • Save kriswema/3736151 to your computer and use it in GitHub Desktop.
Save kriswema/3736151 to your computer and use it in GitHub Desktop.
Format JSON if PHP version is newer or equal to 5.4.0
// If JSON_PRETTY_PRINT is supported by json_encode(), use it.
if(strnatcmp(phpversion(),'5.4.0') >= 0)
{
echo json_encode($realoutput, JSON_PRETTY_PRINT);
}
else
{
echo json_encode($realoutput);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment