php-src/ext/spl/examples/tree.php

18 lines
282 B
PHP
Raw Normal View History

2003-07-16 18:47:26 +00:00
<?php
/* tree view example
*
* Usage: php tree.php <path>
*
* Simply specify the path to tree with parameter <path>.
*
* (c) Marcus Boerger
*/
2003-07-16 20:17:34 +00:00
require_once("sub_dir.inc");
2003-07-16 18:47:26 +00:00
2003-08-14 21:44:38 +00:00
foreach(new sub_dir($argv[1], true, isset($argv[2]) ? $argv[2] : false) as $f) {
2003-07-16 18:47:26 +00:00
echo "$f\n";
}
?>