|
|
|
|
|
|
Function disk_folder_list | Language: PHP
|
Syntax
Parameters
| STRING | Folder | Path to the folder, or an empty string for the current folder. |
Return value
Description
Returns in an array the list of folders found in the specified folder.
See also: disk.file.list |
PHP Sample Code
$folders= disk_folder_list("");
$folders_count = count($folders);
for($ptr = 0; $ptr < $folders; $ptr++) {
echo($folders[$ptr]."<BR>");
} |
|
|
|