summaryrefslogtreecommitdiff
path: root/ext/spl/examples/recursiveiterator.inc
blob: 63523ffad9c2ee0d3ef912f5ab5ea7817ec19b79 (plain)
1
2
3
4
5
6
7
8
9
<?php

interface RecursiveIterator implements Iterator
{
	function hasChildren();
	function getChildren();
}

?>