Code Library
Home Submit Free Hosting Link To Us Contacts

PHP Directory count

PHP Directory count PHP PHP Directory count Download (.zip)



<?php
$dir = "folder";
$start = 0;

if ($handle = opendir($dir)) {
        while (false !== ($file = readdir($handle))) {
                if (is_dir($dir.$file)) {
                        $start++;
                }
            }
        closedir($handle);
}
echo $start . ' folders';
?>






Tatet