端くれプログラマの備忘録 PHP [PHP] ディレクトリ中のファイル一覧を取得する

[PHP] ディレクトリ中のファイル一覧を取得する

$dir = './images/';
$handle = opendir($dir);
while ($file = readdir($handle)) {
    if (filetype($dir . $file) == 'file') {
        echo $file;
    }
}
closedir($handle);

参考サイト

PHP: ディレクトリ 関数 – Manual
http://php.net/manual/ja/ref.dir.php

PHP: filetype – Manual
http://php.net/manual/ja/function.filetype.php