开发者

PHP "pretty print" json_encode [duplicate]

开发者 https://www.devze.com 2023-03-28 23:49 出处:网络
This question already has answers here: Closed 10 years ago. Possible Duplicate: Pretty-Printing JSON with PHP
This question already has answers here: Closed 10 years ago.

Possible Duplicate:

Pretty-Printing JSON with PHP

I'm working on a script that creates a JSON file. Right now I'm just using json_e开发者_StackOverflowncode (PHP 5.2.x) to encode an array into JSON output. Then I print the returned value to a file and save it. Problem is that the client wants to be able to open these JSON files for readability, so I'd like to add line breaks in and "pretty print" the JSON output. Any ideas on how to do this? My only other alternative that I can see is to not use json_encode at all and just write the file contents manually and add in my own line breaks for each line.

Here's what I get:

{"product_name":"prod1","val1":1,"val2":8}

Here's what I want:

{
  "product_name":"prod1",
  "val1":1,
  "val2":8
}

I suppose I could also just replace every comma with a command followed by a \n, and same for the brackets... Thoughts?


PHP has JSON_PRETTY_PRINT option since 5.4.0 (release date 01-Mar-2012).

This should do the job:

$json = json_decode($string);
echo json_encode($json, JSON_PRETTY_PRINT);

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

Note: Don't forget to echo "<pre>" before and "</pre>" after, if you're printing it in HTML to preserve formatting ;)


Hmmm $array = json_decode($json, true); will make your string an array which is easy to print nicely with print_r($array, true);

But if you really want to prettify your json... Check this out


Here's a function to pretty up your json: pretty_json

0

精彩评论

暂无评论...
验证码 换一张
取 消