// 用法 // include(“ranimage.php”); // 或者 // require “ranimage.php”; $dir = downloadfilesa2001-12-13; function get_image_list($dir) { if(!$dir) { $dir = “.”; } $file_array = array(); $dir_handle = opendir($dir); $a = 0; while($file = readdir($dir_handle)) { if((preg_match(/jpg/,$file)) || (preg_match(/png/,$file)) || (preg_match(/gif/,$file)) || (preg_match(/jpeg/,$file))) { $file_array[$a] = $file; $a++; } } return $file_array; } $files = get_image_list($dir); $max = count($files)-1; srand((double)microtime()*1000000); $index = rand(0,$max); $image_name = $files[$index]; echo(““); ?>
http://www.bkjia.com/phpjc/532193.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/532193.htmltecharticle// 用法 // include(“ranimage.php”); // 或者 // require “ranimage.php”; $dir = downloadfilesa2001-12-13; function get_image_list($dir) { if(!$dir) { $dir = “.”; } $file_array =…