1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
/* Lister les fichiers images du repertoire */
$repertoire = opendir("".$gall."");
while($fichiera = readdir($repertoire))
{
// valid uniquement si image JPG, gif, bmp ou png
if ($fichiera !="." && $fichiera !=".." && ((strrchr($fichiera,".") == ".jpg")OR(strrchr($fichiera,".") == ".JPG")OR(strrchr($fichiera,".") == ".gif")OR(strrchr($fichiera,".") == ".GIF")OR(strrchr($fichiera,".") == ".png")OR(strrchr($fichiera,".") == ".PNG")OR(strrchr($fichiera,".") == ".bmp")OR(strrchr($fichiera,".") == ".BMP")) )
{
$liste_images .= "$fichiera"."|" ;
}
}
closedir($repertoire);
// on transforme la liste d'image en tableau
$tableau_images = explode("|", $liste_images);
array_pop($tableau_images);
sort($tableau_images);
// compte le nombre de photos
$nb_photos=count($tableau_images);
/* |
Partager