jvit
This function encodes the data as JSON, and returns the prettified JSON string.
Shortcut: json.beatifulEncode
/**
* beautiful json encode
*/
function jsonEncodePrettify($data)
{
return json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
}