json_encode php pretty code example
Example 1: php json_encode beautify
json_encode($data, JSON_PRETTY_PRINT)
Example 2: js json_encode pretty
var str = JSON.stringify(obj, null, 2); // spacing level = 2
json_encode($data, JSON_PRETTY_PRINT)
var str = JSON.stringify(obj, null, 2); // spacing level = 2