1,'jpeg'=>1,'gif'=>1,'png'=>1); $allfiles = scandir($image_dir); $allpics = array_filter($allfiles, function($f) use($file_types) { $parts = explode('.', $f); return array_key_exists(end($parts), $file_types); }); foreach($allpics as $pic) { echo $pic . "\r\n"; } ?>