“Список PHP все файлы в каталоге” Ответ

Перечислите все файлы в PHP Directory PHP

$path    = './';
$files = scandir($path);
$files = array_diff(scandir($path), array('.', '..'));
foreach($files as $file){
  echo "<a href='$file'>$file</a>";
}
Realy Silly Shark

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

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

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

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

            echo "$entry\n";
        }
    }

    closedir($handle);
}
Aryqs Ipsum

PHP Получите все файлы PHP в каталоге

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

PHP получить список имен файлов в Diretory


<?php
// $dir is dir you want to return names of files and folders (first level - not recursive)
$dir    = '/tmp'; // './' for the root for the file calling scandir
$files1 = scandir($dir); // assending list
$files2 = scandir($dir, 1); //desending list 

print_r($files1);
print_r($files2); //frist files then folders alphabetically respective of types

//output $files1 order of folders then files alphabetically respective of types
//Array
// (
//    [0] => .
//    [1] => ..
//    [2] => folder1
//    [3] => folder2
//    [4] => folder3
//    [2] => file1
//    [2] => file2
//    [2] => file3
// )

?>

Anxious Albatross

Список PHP все файлы в каталоге

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

Ответы похожие на “Список PHP все файлы в каталоге”

Вопросы похожие на “Список PHP все файлы в каталоге”

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

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