Answers for "php iterate and require files in a folder"

PHP
0

php iterate folder

// Shows us all files and directories in directory except "." and "..".

foreach (new DirectoryIterator('../moodle') as $fileInfo) {
    if($fileInfo->isDot()) continue;
    echo $fileInfo->getFilename() . "<br>\n";
}
Posted by: Guest on October-07-2020

Code answers related to "php iterate and require files in a folder"

Browse Popular Code Answers by Language