$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