如何以编程方式美化JSON?

你可能会说这是这个问题的重复,但原来的问题在这里没有回答。 问题的重要部分是:以programmatically

有没有任何PHP功能? 本土或自制?


看起来像这可能工作:

http://recursive-design.com/blog/2008/03/11/format-json-with-php/

成因的结果:

[[["er",null,null,null,null,500],["e",2,null,null,57]],'45932b7d6d6dc08e']

[
  [
    [
      "er",
      null,
      null,
      null,
      null,
      500
    ],
    [
      "e",
      2,
      null,
      null,
      57
    ]
  ],
  '45932b7d6d6dc08e'
] 

json_encode()有一个标志JSON_PRETTY_PRINT

echo json_encode($data, JSON_PRETTY_PRINT);

现在有同样的问题。 但正如你也是我有PHP <5.4。 Zend Framework有Zend_Json :: prettyPrint()。 工作得很好。

链接地址: http://www.djcxy.com/p/48197.html

上一篇: How can I beautify JSON programmatically?

下一篇: JSON.Stringify with intendation