php-src/ext/spl/internal/recursiveiterator.inc
Marcus Boerger a6feb3f405 - Update examples
- Update documentation
- Move classes/interfaces already implemented in c to new subdir internal
2004-05-08 12:24:15 +00:00

9 lines
112 B
PHP
Executable File

<?php
interface RecursiveIterator implements Iterator
{
function hasChildren();
function getChildren();
}
?>