《PHP編程:php實現(xiàn)隨機顯示圖片方法匯總》要點:
本文介紹了PHP編程:php實現(xiàn)隨機顯示圖片方法匯總,希望對您有用。如果有疑問,可以聯(lián)系我們。
PHP教程php通過rand()函數(shù)產(chǎn)生隨機數(shù),這個函數(shù)可以產(chǎn)生一個指定范圍的數(shù)字
PHP教程這段代碼通過產(chǎn)生的隨機數(shù),隨機選擇圖片
PHP教程
<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>
PHP教程辦法二:
PHP教程
<?
$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;//把符合條件的文件名存入數(shù)組
}
}
}
$suiji=array_rand($array); //使用array_rand函數(shù)從數(shù)組中隨機抽出一個單元
?>
<img src="<?=$array[$suiji]?>">
PHP教程辦法三:
PHP教程
<?php
/**********************************************
* Filename : img.php
* Author : freemouse
* Usage:
* <img src=img.php>
* <img src=img.php?folder=images2/>
***********************************************/
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]");
?>
PHP教程以上所述便是本文的全部內(nèi)容了,希望大家能夠喜歡.
歡迎參與《PHP編程:php實現(xiàn)隨機顯示圖片方法匯總》討論,分享您的想法,維易PHP學院為您提供專業(yè)教程。
轉(zhuǎn)載請注明本頁網(wǎng)址:
http://www.snjht.com/jiaocheng/10830.html