I am using xdebug with my php methods such as var_dump() are beautiful but not showing full information instead the dump ends with three dots ... which might be the sign of continuation followed by
(length=87749)
How should I tell xdebug to show full dump ??
Thanks
Xdebug truncates the output of (at least) strings and arrays, to avoid it getting to big.
The amout of data that’s printed can be configured using these directives :
xdebug.var_display_max_childrenxdebug.var_display_max_dataxdebug.var_display_max_depthFor more informations and example, see Variable Display Features
You’ll have to edit your
php.inifile (orxdebug.inifile, depending on your setup), to define those directives, with values that suit your needs.For example, on Ubuntu, in my
/etc/php5/conf.d/xdebug.inifile, I have the following lines :