SublimeXdebug icon indicating copy to clipboard operation
SublimeXdebug copied to clipboard

More information on array and object type variables.

Open WillSkates opened this issue 13 years ago • 5 comments

Is there a way to make the information for arrays and objects expandable to be able to get the properties for member variables key=>value information?

WillSkates avatar Nov 02 '12 11:11 WillSkates

+1 on this. I've set the the config's xdebug.var_display_max_children and xdebug.var_display_max_depth in php.ini and still no luck.

saturday avatar Nov 26 '12 20:11 saturday

+1

macyabbey avatar Nov 28 '12 22:11 macyabbey

:+1:

Pajk avatar Jan 18 '13 16:01 Pajk

:+1:

octaviandavid avatar Jan 18 '13 23:01 octaviandavid

I've been playing with this for the past few days. I found today at http://www.bluestatic.org/bugs/showreport.php?bugid=182 that there is a conflict between PHP 5.3.2 and Xdebug 2.0.5 (which Ubuntu 10.04 has by default). I found compiling my own Xdebug 2.2.1 fixed it. There's a wizard here: http://xdebug.org/wizard.php and I used the following setting in my xdebug.ini

zend_extension = /usr/lib/php5/20090626+lfs/xdebug.so xdebug.remote_enable=On xdebug.remote_host="localhost" xdebug.remote_port=9000 xdebug.remote_handler="dbgp" xdebug.remote_autostart=1 ;xdebug.remote_log="/tmp/xdebug.log xdebug.profiler_enable=1 xdebug.profiler_output_dir="/tmp" xdebug.collect_params=4 xdebug.collect_vars=1 xdebug.collect_return=1

alexmcroberts avatar Jan 23 '13 19:01 alexmcroberts