xdebug.var_display_max_data

Xdebug Display Full Details on var_dump()


Xdebug is an excellent addition to a PHP developers arsenal. However when debugging large arrays etc, the truncating can get in the way.

To stop Xdebug truncating arrays etc when you dump them using var_dump, just make these two additions to your php.ini file:

1
2
xdebug.var_display_max_data=9999999999
xdebug.var_display_max_children=9999999999

For a fuller explanation of Xdebug check out this article

posted @ 2013-10-28 09:47  sexy_girl  阅读(177)  评论(0编辑  收藏  举报