关于php中随机显示图片的函数代码

来源:爱站网时间:2018-04-02编辑:网友分享
这篇文章主要介绍关于php中随机显示图片的函数代码,一个随机显示图片的函数,可以将指定文件夹中存放的图片随机地显示出来,可以在很多地方使用,需要的朋友可以参考下。

例如博客的展示窗


php
/**********************************************
* Filename : img.php
* Author : freemouse
* web : www.cnphp.info
* email :freemouse1981@gmail.com
* Date : 2010/12/27
* 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]");
?>
以上就是关于php中随机显示图片的函数代码的全部内容,感谢大家的阅读,更多内容请关注爱站技术频道网站。

上一篇:PHP缩略图实现函数代码示例

下一篇:PHP header函数分析介绍

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载