Home > Backend Development > PHP Tutorial > How Can I Pretty-Print JSON Data in PHP?

How Can I Pretty-Print JSON Data in PHP?

Mary-Kate Olsen
Release: 2024-12-19 16:04:09
Original
953 people have browsed it

How Can I Pretty-Print JSON Data in PHP?

Presenting JSON Data Elegantly with PHP

When handling JSON data in PHP, you may encounter the need to format it in a structured and aesthetically pleasing manner. By default, json_encode() outputs data as a flat, single-line string. However, there's a solution that Facebook has implemented: JSON_PRETTY_PRINT.

Introduced in PHP 5.4, JSON_PRETTY_PRINT is an option that you can pass to json_encode() to transform your JSON data into a human-readable format. It indents and line-breaks the data, making it easier to view and comprehend.

To demonstrate, let's use the example from the question:

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

Output:

{
    "a": "apple",
    "b": "banana",
    "c": "catnip"
}
Copy after login

As you can see, the output is now formatted, making it easier to read, especially for large data sets. While there may have been workarounds in the past, JSON_PRETTY_PRINT provides a simple and elegant solution to present JSON data in a visually appealing manner.

The above is the detailed content of How Can I Pretty-Print JSON Data in PHP?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template