| Subject: | I don't see any multidimentional... |  
| Summary: | Package rating comment |  
| Messages: | 1 |  
| Author: | Antoine |  
| Date: | 2010-05-05 13:51:43 |  
|   |  
 
 | 
 | 
Antoine rated this package as follows:
| Utility:  | Bad | 
| Consistency:  | Insufficient | 
| 
 | 
  Antoine - 2010-05-05 13:51:44  
I don't see any multidimentional array conversion in this class. 
Oh, the only thing it does it's to convert arrays to n0,1,2,3 ... n. Great but useless. 
 
A good classe would have transformed a multidi array to  
 
<items> 
 <item> 
   <name>A</name> 
 </item> 
 <item> 
   <name>B</name> 
 </item> 
 
And not to this crap XML : 
 
<array> ---> why can't we pass the root element ??! 
 <items> 
   <n0> 
    <item> 
      <name>A</name> 
    </item> 
   </n0> 
  </item> 
</array> 
  
   |