本文分享一個php實現的隨機顯示圖片的函數,可以將指定文件夾中存放的圖片隨機地顯示出來。有興趣的朋友研究下吧。
php通過rand()函數產生隨機數,這個函數可以產生一個指定范圍的數字
這段代碼通過產生的隨機數,隨機選擇圖片
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 <html> <body> <?php srand( microtime() * 1000000 ); $num = rand( 1, 4 ); switch( $num ) { case 1: $image_file = "/home/images/alfa.jpg"; break; case 2: $image_file = "/home/images/ferrari.jpg"; break; case 3: $image_file = "/home/images/jaguar.jpg"; break; case 4: $image_file = "/home/images/porsche.jpg"; break; } echo "Random Image : <img src=$image_file />"; ?> </body> </html>方法二:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 <? $handle = opendir('./'); //當前目錄 while (false !== ($file = readdir($handle))) { //遍歷該php教程文件所在目錄 list($filesname,$kzm)=explode(".",$file);//獲取擴展名 if ($kzm=="gif" or $kzm=="jpg") { //文件過濾 if (!is_dir('./'.$file)) { //文件夾過濾 $array[]=$file;//把符合條件的文件名存入數組 } } } $suiji=array_rand($array); //使用array_rand函數從數組中隨機抽出一個單元 ?> <img src="<?=$array[$suiji]?>">方法三:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 <?php /********************************************** * Filename : img.php * Author : freemouse * Usage: * <img src=img.p新聞熱點
疑難解答