View Single Post
  #2 (permalink)  
Old 03-27-2004
mes's Avatar
mes mes is offline
ZeroC Staff
 
Name: Mark Spruiell
Organization: ZeroC, Inc.
Project: Ice Developer
 
Join Date: Feb 2003
Location: California
Posts: 971
If you execute the following statement, you'll see that the object graph is being preserved correctly in PHP:
Code:
print_r($nav);
There is a bug in your code which is preventing it from displaying the graph. The corrected line is shown below:
Code:
ftr_dump_nav( $mynav->children[ $i ], $level + 1 );
Take care,
- Mark
Reply With Quote