$file_arr = scandir($filepath);
$file = array();
foreach ($file_arr as $file) {
// . ..の場合はスキップ
if (in_array($file, array('.', '..')))
continue;
// ディレクトリの場合もスキップ
if (is_dir(($filepath . $file)))
continue;
// ここまで来たら対象ファイル
$file[] = $file;
}
説明はありません。