php 读取目录下图像文件
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-19 15:05:33 浏览: 评论:0
本款是一款php 读取目录下图像文件代码,利用了opendir来打开目录然后获取文件后缀名,判断是否为指定文件.
php 读取目录下图像文件实例代码如下:
- $directory = 'gallery';
- $allowed_types=array('jpg','jpeg','gif','png');
- $file_parts=array();
- $ext='';
- $title='';
- $i=0;
- $dir_handle = @opendir($directory) or die("there is an error with your image directory!");
- while ($file = readdir($dir_handle))
- {
- if($file=='.' || $file == '..') continue;
- $file_parts = explode('.',$file);
- $ext = strtolower(array_pop($file_parts));
- $title = implode('.',$file_parts);
- $title = htmlspecialchars($title);
- $nomargin='';
- if(in_array($ext,$allowed_types))
- {
- if(($i+1)%4==0) $nomargin='nomargin';
- echo '
- <div class="pic '.$nomargin.'" style="background:url('.$directory.'/'.$file.') no-repeat 50% 50%;">
- <a href="'.$directory.'/'.$file.'" title="'.$title.'" target="_blank">'.$title.'</a>
- </div>';
- $i++;
- }
- }
- //开源代码phpfensi.com
- closedir($dir_handle);
Tags: php读取目录 php读取图像文件
- 上一篇:php加入干扰的生成验证码代码
- 下一篇:php 上传图片并按比例生成指定大小图
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)