php list all folders in directory code example

Example 1: php get all php files in a directory

foreach(glob('includes/*.php') as $file) {
    ...
}

Example 2: php directory listing

if ($handle = opendir('.')) {

    while (false !== ($entry = readdir($handle))) {

        if ($entry != "." && $entry != "..") {

            echo "$entry\n";
        }
    }

    closedir($handle);
}

Example 3: php list directories

$dir = '.';
$directories = glob($dir . '/*', GLOB_ONLYDIR);

Example 4: php list all files in directory

scandir ( string $directory [, int $sorting_order = SCANDIR_SORT_ASCENDING [, resource $context ]] ) : array