php-src/ext/spl/examples/tree.php
2003-11-22 20:51:15 +00:00

16 lines
No EOL
235 B
PHP
Executable file

<?php
/** tree view example
*
* Usage: php Tree.php <path>
*
* Simply specify the path to tree with parameter <path>.
*
* (c) Marcus Boerger
*/
foreach(new DirectoryGraphIterator($argv[1]) as $file) {
echo $file . "\n";
}
?>