summaryrefslogtreecommitdiff
path: root/ext/spl/examples/directorytree.inc
blob: 218ca513d93ef6d5e8ccaaed34222ca92a59f70c (plain)
1
2
3
4
5
6
7
8
9
10
<?php

class DirectoryTree extends RecursiveIteratorIterator
{
	function __construct($path) {
		parent::__construct(new DirectoryFilterDots($path));
	}
}

?>