發(fā)布:thatboy 來源:Net 【大 中 小】本文分享一個php實現(xiàn)的隨機顯示圖片的函數(shù),可以將指定文件夾中存放的圖片隨機地顯示出來。有興趣的朋友研究下吧。 本節(jié)主要內(nèi)容: 在看實例之前,為大家分享下php中生成隨機數(shù)的幾篇文章: 有了以上的基礎,理解如下的php自定義函數(shù),就不難了。 例子: 復制代碼代碼示例: <?php /** * 功能:隨機顯示圖片 * Filename : img.php * Usage: * <img src=img.php> * <img src=img.php?folder=images2/> * Edit: www. **/ 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]"); ?> |
|