SPL-StandardPHPLibrary
recursiveiterator.inc
Go to the documentation of this file.
00001 <?php
00002 
00018 interface RecursiveIterator extends Iterator
00019 {
00022     function hasChildren();
00023     
00027     function getChildren();
00028 }
00029 
00030 ?>