例如部落格的展示窗
複製程式碼 程式碼如下:
/************************************************
*檔案名稱: img.php
* 作者:freemouse
* 網址:www.cnphp.info
* 信箱:freemouse1981@gmail.com
* 日期:2010/12/27
*使用:
* ;
* >
************* ***************************************** /
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]");
?>
以上就介紹了lol 重新隨機 php中隨機顯示圖片的函數程式碼,包括了lol 重新隨機方面的內容,希望對PHP教學有興趣的朋友有幫助。