Apr
29

Xdebug truncate var_dump output

By rzelazko  //  Lamp, PHP  //  No Comments

By default Xdebug truncate long var_dump output. To turn off this feature edit php.ini or xdebug.ini and add there:

xdebug.var_display_max_children=-1
xdebug.var_display_max_data=-1
xdebug.var_display_max_depth=-1

Information about Xdebug: Instaling and using Xdebug (PHP5 Debian).

Leave a comment