This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 178854 - Child elements in arrays limited to 30 results in remote debugging
Summary: Child elements in arrays limited to 30 results in remote debugging
Status: RESOLVED DUPLICATE of bug 180999
Alias: None
Product: php
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 6.x
Hardware: PC Windows XP
: P3 normal with 1 vote (vote)
Assignee: rmatous
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-12-18 07:35 UTC by jozefh
Modified: 2010-02-22 08:40 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description jozefh 2009-12-18 07:35:11 UTC
http://forums.netbeans.org/topic21168.html

Sample code to describe/test the problem.

function nestedArray() {
 
  $array_a = array();
  $array_b = array();

  for ($i=0; $i<50; $i++ ) {
    $array_a['fieldA'.$i] = 'A'.$i;
  }

  for ($i=0; $i<150; $i++ ) {
    $array_b['fieldB'.$i] = 'B'.$i;
  }

  // NB "Variables" window displays only 30 elements in $array_a['fieldA0']
  $array_a['fieldA0'] = $array_b;

  // XDebug displays correct 150 elements
  xdebug_var_dump($array_a['fieldA0']);
}
Comment 1 rmatous 2010-02-22 08:40:49 UTC
Fixed by fixing:
https://netbeans.org/bugzilla/show_bug.cgi?id=180999

So, marked as duplicate of #180999

*** This bug has been marked as a duplicate of bug 180999 ***