searched the doc on the site and the email list archives for info on
this without success
remote debugging on apache server
As the array builds while stepping thru the code I see a maximum of 31
nodes in the local context pane for the array even if more than 31 exist
have set:
xdebug.var_display_max_children 2048
xdebug.var_display_max_data 2048
xdebug.var_display_max_depth 20
overkill I know, but they have no effect on the number of nodes
displayed for the array .
code snippet to reproduce:
<?
$myArray = array();
for ($x=0;$x<200;$x++) {
$myArray[] = 'node' . $x;
}
?>
did I miss a config setting?
mike
Received on Wed Oct 24 19:51:13 2007
This archive was generated by hypermail 2.1.8 : Sun Nov 23 2008 - 16:00:11 CET