我與JSON工作由PHP的那一刻,當我進行編碼,這將輸出:結構化JSON佈局
{"username":"ND","email":"[email protected]","regdate":"8th June 2010","other":{"alternative":"ND"},"level":"6"}
當我將它想輸出是這樣的:
{
"username": "ND",
"email": "[email protected]",
"regdate": "8th June 2010",
"other":
{
"alternative": "ND"
},
"level":"6"
}
這樣,我和其他開發人員就可以在結構化的情況下閱讀它。我怎樣才能做到這一點?
例也是這樣:
乾杯
我建議使用更好的工具來查看數據,而不是嘗試格式化輸出。 https://addons.mozilla.org/en-US/firefox/addon/10869/ – Quentin 2010-08-14 21:44:51
同意@David。 Firebug還允許您將JSON導航爲樹狀結構。很有用。 – 2010-08-14 21:48:46
在解碼之前,您是否試圖使用json_encode()對已經格式良好的JSON進行編碼,因爲這會產生上述結果? - 看到我的編輯如下。 – 2010-08-14 23:21:36