PHP Random Images



This page use PHP code to display the image selected at random from a list of directories.

<?php
function getImagesFromDir($path) {
$images = array();
if ( $img_dir = @opendir($path) ) {
while ( false !== ($img_file = readdir($img_dir)) ) {
// checks for gif, jpg, png
if ( preg_match("/(\.gif|\.jpg|\.png)$/", $img_file) ) {
$images[] = $img_file;
}
}
closedir($img_dir);
}
return $images;
}
function getRandomFromArray($ar) {
mt_srand( (double)microtime() * 1000000 ); // php 4.2+ not needed
$num = array_rand($ar);
return $ar[$num];
}
/////////////////////////////////////////////////////////////////////
// This is the only part of the code may need to change.
// Indicate the location of your pictures
$root = '';
// use if specifying path from root
//$root = $_SERVER['DOCUMENT_ROOT'];
$path = 'images/';
// End section of the user's modified
/////////////////////////////////////////////////////////////////////
// Get the image list directory
$imgList = getImagesFromDir($root . $path);
$img = getRandomFromArray($imgList);
?>
Place the following where you want the image to appear at random:
<img src="<?php echo $path . $img ?>" alt="" />

Post a Comment

0 Comments

Close Menu