mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
16 lines
No EOL
235 B
PHP
Executable file
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";
|
|
}
|
|
|
|
?>
|