summaryrefslogtreecommitdiff
path: root/ext/spl/examples/tree.php
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2003-10-30 10:07:27 +0000
committerSVN Migration <svn@php.net>2003-10-30 10:07:27 +0000
commite00288b5b25766c2292b2e45596b9bc25d910111 (patch)
treed217ee89217ebab98202493d6820befb7bfdca6e /ext/spl/examples/tree.php
parent0b3fe789062221deb65f7c0b15c450d9bda9bcbb (diff)
downloadphp-git-php-5.0.0b2.tar.gz
This commit was manufactured by cvs2svn to create tag 'php_5_0_0b2'.php-5.0.0b2
Diffstat (limited to 'ext/spl/examples/tree.php')
-rwxr-xr-xext/spl/examples/tree.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/ext/spl/examples/tree.php b/ext/spl/examples/tree.php
deleted file mode 100755
index 176c286076..0000000000
--- a/ext/spl/examples/tree.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-/* tree view example
- *
- * Usage: php tree.php <path>
- *
- * Simply specify the path to tree with parameter <path>.
- *
- * (c) Marcus Boerger
- */
-
-require_once("sub_dir.inc");
-
-foreach(new sub_dir($argv[1], true, isset($argv[2]) ? $argv[2] : false) as $f) {
- echo "$f\n";
-}
-
-?> \ No newline at end of file