How can I beautify JSON programmatically?
had the same question right now. But as you also i'm having php < 5.4. Zend Framework has Zend_Json::prettyPrint(). Works very well.
json_encode() has a flag JSON_PRETTY_PRINT
echo json_encode($data, JSON_PRETTY_PRINT);