1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00
Files
archived-php-src/ext/spl/examples/tree.php
Marcus Boerger 3d9ec63384 Update examples
2003-11-22 20:51:15 +00:00

16 lines
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";
}
?>