“PHP Itare Polder” Ответ

PHP Itare Polder

// 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";
}
86Dev

Список каталогов PHP

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

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

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

            echo "$entry\n";
        }
    }

    closedir($handle);
}
Aryqs Ipsum

Ответы похожие на “PHP Itare Polder”

Вопросы похожие на “PHP Itare Polder”

Больше похожих ответов на “PHP Itare Polder” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования