これは、フォルダからすべてのファイルを取得し、画像ファイルを除外して表示するスクリプトの一部です。拡張子によるフィルタリングを開始する前に、「thumb」という単語を含む$names変数のインスタンスを削除したいと思います。
sort($names);
$tempvar=0;
for ($i=0;$names[$i];$i++){
$ext=strtolower(substr($names[$i],-4));
if ($ext==".jpg"||$ext==".gif"||$ext=="jpeg"||$ext==".png"){$names1[$tempvar]=$names[$i];$tempvar++;}
}