mirror of
https://github.com/php/php-src.git
synced 2026-03-27 01:32:22 +01:00
16 lines
235 B
PHP
Executable File
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";
|
|
}
|
|
|
|
?>
|