php實現隨機顯示圖片方法匯總,
php通過rand()函數產生隨機數,這個函數可以產生一個指定範圍的數字
這段代碼通過產生的隨機數,隨機播放圖片
<?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 : ";?>
方法二:
<?$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函數從數組中隨機抽出一個單元?>">
方法三:
<?php/*********************************************** Filename : img.php* Author : freemouse* Usage:* * ***********************************************/if($_GET['folder']){$folder=$_GET['folder'];}else{$folder='/images/';}//存放圖片檔案的位置$path = $_SERVER['DOCUMENT_ROOT']."/".$folder;$files=array();if ($handle=opendir("$path")) {while(false !== ($file = readdir($handle))) {if ($file != "." && $file != "..") {if(substr($file,-3)=='gif' || substr($file,-3)=='jpg') $files[count($files)] = $file;}}}closedir($handle);$random=rand(0,count($files)-1);if(substr($files[$random],-3)=='gif') header("Content-type: image/gif");elseif(substr($files[$random],-3)=='jpg') header("Content-type: image/jpeg");readfile("$path/$files[$random]");?>
以上所述就是本文的全部內容了,希望大家能夠喜歡。
http://www.bkjia.com/PHPjc/1003994.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/1003994.htmlTechArticlephp實現隨機顯示圖片方法匯總, php通過rand()函數產生隨機數,這個函數可以產生一個指定範圍的數字 這段代碼通過產生的隨機數,隨機選...