What is the maximum string length for variables' values that Xdebug sends a remote debugging client and can this be altered?
I've only found this in the documentation:
xdebug.var_display_max_data Type: integer, Default value: 512 Controls the maximum string length that is shown when variables are displayed with either xdebug_var_dump(), xdebug.show_local_vars or through Function Traces. This setting does not have any influence on the amount of data that is send to the client through the Remote Debugging feature.
I'm working with code that is building whole HTML documents programmatically (elgg, elglib.php->elgg_view_layout()) and the variable values I need to watch seem to be getting truncated.
I'm running OSX 10.6.7, PHP 5.3.4, Xdebug 2.1.1 installed from PECL.