1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/spl/examples/recursiveiterator.inc
2003-11-18 22:18:38 +00:00

9 lines
112 B
PHP

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