We can pretty print JSON String in PHP using the json_encode() function and by making use of the JSON_PRETTY_PRINT option along with it.
Let's take a look by an example.
Unformatted JSON String
PHP Code
<?php
$unformattedCityJSON = '{"countries":[{"name":"Japan","cities":[{"name":"Tokyo","area":"Kanto"},{"name":"Osaka","area":"Kansai"}]},{"name":"China","cities":[{"name":"Beijing","area":"Beijing Municipality"},{"name":"Shanghai","area":"Shanghai Municipality"}]},{"name":"Australia","cities":[{"name":"Sydney","area":"New South Wales"},{"name":"Melbourne","area":"Victoria"}]}]}';
$data = json_decode($unformattedCityJSON, true);
$prettifiedCityJSON = json_encode($data, JSON_PRETTY_PRINT);
echo $prettifiedCityJSON;
?>
Prettified JSON Output:
{
"countries": [
{
"name": "Japan",
"cities": [
{
"name": "Tokyo",
"area": "Kanto"
},
{
"name": "Osaka",
"area": "Kansai"
}
]
},
{
"name": "China",
"cities": [
{
"name": "Beijing",
"area": "Beijing Municipality"
},
{
"name": "Shanghai",
"area": "Shanghai Municipality"
}
]
},
{
"name": "Australia",
"cities": [
{
"name": "Sydney",
"area": "New South Wales"
},
{
"name": "Melbourne",
"area": "Victoria"
}
]
}
]
}
Example Screenshot

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to PHP,
- How to destroy PHP session()
- PHP Code for sending Emails
- 403 forbidden error for Image
- macOS - cannot calculate MAC address: Using fd 9 hv_vm_create HV_ERROR [PHP XAMPP]
- Upload Pdf file using PHP Script
- PHP header location function not called
- Copy file from one directory to other in Php
- PHP.ini: How to Remove URL Forward Slash Before Single or Double Quotes
- PHP Base64 encoding decoding a variable
- PHP Fatal error : Call to a member function bind_param() on a non-object
- PHP Script to Upload Images to Server
- Upload docx file using PHP script
- How to Pretty Print JSON in PHP
- PHP Warning: Cannot modify header information - headers already sent
- PHP drag and drop file upload tutorial using dropzone.js
- Failed to load resource: net::ERR_CACHE_MISS PHP
- PHP 301 Redirect Permanently
- Call PHP function on Button click using jquery ajax
- Installing vue.js in Laravel 8
- Save current timestamp in MySQL using PHP mysqi binding
- Delete file using PHP code : unlink()
More Posts:
- Android Studio Button onClickListener Example - Android-Studio
- [Java] How to throws Exception using Functional Interface and Lambda code - Java
- How to recover SharePoint FARM if the SQL Server IP changes - SharePoint
- Block Select Text in TextEdit on Mac - MacOS
- Java: Convert String to InputStream - Java
- Rust: zsh: no such file or directory: ./main - Rust
- Split a String into Sub-string and Parse in Python - Python
- How to Download Microsoft Excel on Mac - MacOS