2014年2月7日 星期五

[PHP trick] A Magical Method to print_r() an Array with Indentation in PHP

Change this:
print_r($i_am_an_array);
To this:
echo '<pre>', print_r($i_am_an_array, true), '</pre>';

And the array will be magically indented right after you press 'F5' in browser.
(Wow! It looks so pretty! <3)

* Note that the 2nd argument of print_r(first_arg, second_arg) equals true means it forces to return the array as a string. But seems this is not a necessity, depending on your case.

沒有留言:

張貼留言

[夕陽感言] 系統的千瘡百孔

凡事都有兩面,有好處,自然有壞處;有得,自有失;沒有完美,總有它的限制。 沒有一個程式可以解決所有的問題,沒有一個系統沒有漏洞。它能到達「成熟」的階段,但它永不會完美。之後就是隨著年日總有「老化」的一天,或是世界進步了,或是已經maintain不到了……科技的日新月異,隨著pro...