1 2 3 4 5 6 7 8 |
$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