
 jp klomp - 2013-08-12 12:25:40
I am very happy with you class, just what I needed.
Just when trying out the example.php it was a bit messy so I change the example to make a list with line breaks.
[From line 63]
// to see the contains of the list of the extensions files found
//print_r($Dir->FileExtList);
foreach ($Dir->FileExtList as $g) {
        print_r($g);
        echo " , ";
}
echo "<br/> List of files: <br/>";
// display all the file found during scanning
foreach ($Dir->TabFiles as $f) {
                echo "<br/>".$f["filename"].chr(0xA);
               // print_r($f);
}
?>
[EOF]