$hepsi = glob("resimler/*.*");
for ($i = 0; $i < count($hepsi); $i++) {
$dosya = $hepsi[$i];
$aranan = array(
'gif',
'jpg',
'jpeg',
'png'
);
$uzanti = strtolower(pathinfo($dosya, PATHINFO_EXTENSION));
if (in_array($uzanti, $aranan)) {
$sadeuzanti = pathinfo($dosya);
$uzantisiz = basename($dosya,'.'.$sadeuzanti['extension']);
echo ''.'';
} else continue;
}
?>
Herhangi bir sıkıntı yok bu kodlarda. Bizzat şimdi denedim. Kod toplam 18 satır.
22.satırda nasıl hata alıyorsun ? O senin kodlamanda bir hata olabilir.