Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building a PHP script that feeds JSON data to another script. My script builds data into a large associative array, and then outputs the data using json_encode. Here is an example script:

$Data = array('a' => 'apple', 'b' => 'banana', 'c' => 'catnip');
header('Content-type: text/javascript');
echo json_encode($Data);

The above code yields the following output:

{"a":"apple","b":"banana","c":"catnip"}

This is great if you have a small amount of data, but I'd prefer something along these lines:

{
    "a": "apple",
    "b": "banana",
    "c": "catnip"
}

Is there a way to do this in PHP without an ugly hack? It seems like someone at Facebook figured it out.

share|improve this question
3  
For PHP before 5.4, you can use the fallback in upgradephp as up_json_encode($data, JSON_PRETTY_PRINT); – mario Feb 6 at 22:28

6 Answers

up vote 67 down vote accepted

PHP 5.4 offers the JSON_PRETTY_PRINT option for use with the json_encode() call.

http://php.net/manual/en/function.json-encode.php

<?php
...
$json_string = json_encode($data, JSON_PRETTY_PRINT);
share|improve this answer
7  
Thanks, this is the best way to do it now. I didn't have php 5.4 back when I asked this question though... – Zach Rattner Feb 3 '12 at 16:38
   
+1. This one should be the accepted answer! – rustyx Jan 10 at 13:49

I had the same issue.

Anyway I just used the json formatting code here:

http://recursive-design.com/blog/2008/03/11/format-json-with-php/

Works well for what I needed it for.

share|improve this answer
This one looks great. – cbrandolino May 19 '11 at 5:58
Nice find. Thanks for sharing. – Zach Rattner May 19 '11 at 6:04
Bingo, just what i was looking for. – Fedearne Mar 15 '12 at 20:11

This function will take JSON string and indent it very readable. It also should be convergent, prettyPrint( $json ) === prettyPrint( prettyPrint( $json ) ).

Input

{"key1":[1,2,3],"key2":"value"}

Output

{
    "key1": [
        1,
        2,
        3
    ],
    "key2": "value"
}

Code

function prettyPrint( $json )
{
    $result = '';
    $level = 0;
    $prev_char = '';
    $in_quotes = false;
    $ends_line_level = NULL;
    $json_length = strlen( $json );

    for( $i = 0; $i < $json_length; $i++ ) {
        $char = $json[$i];
        $new_line_level = NULL;
        $post = "";
        if( $ends_line_level !== NULL ) {
            $new_line_level = $ends_line_level;
            $ends_line_level = NULL;
        }
        if( $char === '"' && $prev_char != '\\' ) {
            $in_quotes = !$in_quotes;
        } else if( ! $in_quotes ) {
            switch( $char ) {
                case '}': case ']':
                    $level--;
                    $ends_line_level = NULL;
                    $new_line_level = $level;
                    break;

                case '{': case '[':
                    $level++;
                case ',':
                    $ends_line_level = $level;
                    break;

                case ':':
                    $post = " ";
                    break;

                case " ": case "\t": case "\n": case "\r":
                    $char = "";
                    $ends_line_level = $new_line_level;
                    $new_line_level = NULL;
                    break;
            }
        }
        if( $new_line_level !== NULL ) {
            $result .= "\n".str_repeat( "\t", $new_line_level );
        }
        $result .= $char.$post;
        $prev_char = $char;
    }

    return $result;
}
share|improve this answer
1  
+1 - excellent, works on any PHP version and handles multiple levels – matja Jun 24 '12 at 11:10
1  
Agree, this code is marvelous. The best answer if you want a code that works with PHP < 5.4 – user1121352 Feb 11 at 21:23
Really, really nice. Thanks! – JakeGould Apr 12 at 14:44

A simple way (which only works reliably on a json structured as in your example) would be with the following replacement:

 $string = '{"a":"apple","b":"banana","c":"catnip"}';
 $pattern = array(',"', '{', '}');
 $replacement = array(",\n\t\"", "{\n\t", "\n}");
 echo str_replace($pattern, $replacement, $string);

I would encourage to use a more structured parser if you plan on having to deal with more complex structures. Here is a decent one: http://www.php.net/manual/en/function.json-encode.php#80339 .


The following is totally wrong; leaving it here to explain some comments.

As you probably know, php returns the output you present in the second block of code - it's the browser that does not display newlines that way without a <br />.

You might want to try echo nl2br(json_encode($Data));.

share|improve this answer
If this is the case, then why aren't the newlines displayed when the Content-type is set to text/plain? – Zach Rattner May 19 '11 at 5:24
@Zach Oh aren't they? I'm sorry. I guess you'll need a preg_replace then. Do you want me to edit the answer the required one, or do you think it's too hackish? In the latter case, I'll just leave this one as it is - feel free to downvote. – cbrandolino May 19 '11 at 5:27
PHP does not pretty print JSON at all, it'll pack everything into one line. Inserting <br>s would alter the JSON, which is probably not desirable. – deceze May 19 '11 at 5:28
@deceze, it looks like what @zach want is displaying json for human reading actually - so brs won't be this huge problem. – cbrandolino May 19 '11 at 5:29
cbrandolino: If you don't mind showing me how you'd do it with preg_replace, that'd be great. Sorry about whoever downvoted you. – Zach Rattner May 19 '11 at 5:30
show 8 more comments

If you are on firefox install JSONovich. Not really a PHP solution I know, but it does the trick for development purposes/debugging.

share|improve this answer
1  
I think this is the proper solution for when dev'ing an api. It gives the best of both worlds, easy debugging since you can read everything and you are not altering the backends behaviour, including its performance. – Daniel Apr 19 '12 at 16:48

If you are working with MVC

try doing this in your controller

public function getLatestUsers() {
    header('Content-Type: application/json');
    echo $this->model->getLatestUsers(); // this returns json_encode($somedata, JSON_PRETTY_PRINT)
}

then if you call /getLatestUsers you will get a pretty JSON output ;)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.