jquery <pre> debug collapse</pre>

时间:2011-10-26 18:38:13

标签: php jquery pre

我一直都在使用:

print'<pre>';
print_r($var);
print'</pre>';

调试php。

我想要折叠这棵树

[params] => JRegistry Object
                        (
                            [data:protected] => stdClass Object
                                (
                                    [show_title] => 
                                    [link_titles] => 
                                    [show_intro] => 

使用jquery

2 个答案:

答案 0 :(得分:3)

我使用Kint这是非常好的。要使用它,只需输入:

// shows name of variable, collapsible value and place you called it from
d(varname); 
/* pretty stack trace that lets me expand the source, and see 
   the parameters passed to the function; same is achieved via `d(1);` */
Kint::trace() 

截图:

Kint screenshot

答案 1 :(得分:2)