這是從文件夾中抓住所有文件的腳本的一部分的話拇指任何情況下,過濾掉圖像文件,然後將其顯示。我想刪除在$名稱變量包含單詞「拇指」它開始通過延長過濾之前的任何情況。試圖篩選出含有可變
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++;}
}
你有沒有考慮過['fnmatch'函數](http://php.net/manual/en/function.fnmatch.php)? – Passerby