More information on array and object type variables.
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?
+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.
+1
:+1:
:+1:
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