readdir を使用してフォトギャラリーを作成していますが、そのディレクトリには画像以外のファイルもあります。ディレクトリには数千のファイルがあり、拡張子をフィルタリングするのに本当に苦労しています。どんな助けでも大歓迎です
if ($handle = opendir(getcwd())) {
while (false !== ($entry = readdir($handle))) {
//but there are other files like doc,pdf,html,php how to fiter them
echo "<img src='$entry' height='100' width='100'>";
}
closedir($handle);
}