<?php
$file_ex = array(".jpg",".png",".gif");
$k = 0;
$opendir = opendir("/kullanici/klasor");
while (($file = readdir($opendir)) !== false) {
if (in_array(strstr($file,"."),$file_ex)) {
echo "Alınan ".$k.". Dosya: ".$file;
$k++;
}
}
closedir($opendir);
?>