jquery
;调试崩溃

发布于 2024-12-11 19:22:37 字数 499 浏览 0 评论 0原文

我一直使用:

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

来调试 php。

我想

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

用 jquery折叠这棵树

All time I use:

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

to debug php.

I want to collapse this tree

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

with jquery

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

公布 2024-12-18 19:22:37

我使用 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 截图
(来源:github.io

I use Kint which is Excellent. To use it, just type :

// 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() 

Screenshot:

Kint screenshot
(source: github.io)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文