$graphics; function getFileNames($dir,&$graphics) { #global $graphics; $dr=dir($dir); $dr->rewind(); while($fl=$dr->read()) { if (ereg(".\.jpg$",$fl) | ereg(".\.gif$",$fl) | ereg(".\.png$",$fl) | ereg(".\.JPG$",$fl) | ereg(".\.GIF$",$fl) | ereg(".\.PNG$",$fl)) { $graphics[] = "$dir/$fl"; } } } foreach(array("./gallery") as $directory) { getFileNames($directory,$graphics); } shuffle($graphics); #shuffle($graphics); ?>
| |
| |
| |
| |