Kód v php :
//scan directory $directory = "../images/"; //get all images with a .png extension. $images = glob($directory . "*.png"); //print each png image foreach($images as $image) { echo $image; }
Pomocou tohto kódu je možné zobraziť aj iné súbory, stači zmeniť png na iný formát.
Ďaľší príklad predstavuje trochu zložitejší kód, ale vykonáva presne to isté. Takže je na Vás, pre ktorý sa rozhodnete.
Kód v php :
$filePath = "../images"; $string=""; $fileCount=0; $dir = opendir($filePath); while ($file = readdir($dir)) { if (eregi("\.png",$file)) { $string .= "$file<br />"; $fileCount++; } } if ($fileCount > 0) { echo sprintf("<h2>All Files in %s</h2><br />%s<strong>Total Files: %s</strong>",$filePath,$string,$fileCount); }