php中随机显示图片的函数代码
程序员文章站
2022-05-21 17:35:25
例如博客的展示窗 复制代码 代码如下:
例如博客的展示窗
<?php
/**********************************************
* filename : img.php
* author : freemouse
* web : www.cnphp.info
* email :freemouse1981@gmail.com
* date : 2010/12/27
* 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
/**********************************************
* filename : img.php
* author : freemouse
* web : www.cnphp.info
* email :freemouse1981@gmail.com
* date : 2010/12/27
* 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]");
?>
上一篇: Python中的函数定义方法
下一篇: 科学计算和可视化
推荐阅读
-
access-PHP将十六进制流转换成图片显示在页面中的问题
-
PHP 文章中的远程图片采集到本地的代码
-
在PHP的图形函数中显示汉字_php基础
-
PHP中通过HTTP_USER_AGENT判断是否为手机移动终端的函数代码_PHP
-
php中过滤html代码的函数 提高程序安全性_PHP
-
UCenter中的一个可逆加密函数authcode函数代码_php技巧
-
PHP中GD库的官方站文档中有显示ImageGifAnimBegin这个函数,为什么小弟我用在PHP中会提示undefined function
-
用PHP实现的随机广告显示代码_PHP教程
-
解析PHP中的crypt()函数(附代码实例)
-
php ucwords() 函数将字符串中每个单词的首字符转换为大写(实现代码)