summaryrefslogtreecommitdiff
path: root/ext/spl/examples/filter_tree.php
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/examples/filter_tree.php')
-rwxr-xr-xext/spl/examples/filter_tree.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/spl/examples/filter_tree.php b/ext/spl/examples/filter_tree.php
deleted file mode 100755
index 8ee4cef556..0000000000
--- a/ext/spl/examples/filter_tree.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-/* tree view example
- *
- * Usage: php filter_tree.php <path> <regex>
- *
- * Simply specify the path to tree with parameter <path>.
- * The regular expression <regex> is used to filter the tree.
- *
- * (c) Marcus Boerger
- */
-
-require_once("sub_dir.inc");
-require_once("filter.inc");
-
-foreach(new filter(new sub_dir($argv[1]), $argv[2]) as $f) {
- echo "$f\n";
-}
-
-?> \ No newline at end of file