VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php 读取目录下图像文件

本款是一款php 读取目录下图像文件代码,利用了opendir来打开目录然后获取文件后缀名,判断是否为指定文件.

php 读取目录下图像文件实例代码如下:

  1. $directory = 'gallery'
  2.  
  3. $allowed_types=array('jpg','jpeg','gif','png'); 
  4. $file_parts=array(); 
  5. $ext=''
  6. $title=''
  7. $i=0; 
  8.  
  9. $dir_handle = @opendir($directoryor die("there is an error with your image directory!"); 
  10.  
  11. while ($file = readdir($dir_handle))  
  12.  if($file=='.' || $file == '..'continue
  13.   
  14.  $file_parts = explode('.',$file); 
  15.  $ext = strtolower(array_pop($file_parts)); 
  16.  
  17.  $title = implode('.',$file_parts); 
  18.  $title = htmlspecialchars($title); 
  19.   
  20.  $nomargin=''
  21.   
  22.  if(in_array($ext,$allowed_types)) 
  23.  { 
  24.   if(($i+1)%4==0) $nomargin='nomargin'
  25.   
  26.   echo ' 
  27.   <div class="pic '.$nomargin.'" style="background:url('.$directory.'/'.$file.') no-repeat 50% 50%;"
  28.   <a href="'.$directory.'/'.$file.'" title="'.$title.'" target="_blank">'.$title.'</a> 
  29.   </div>'; 
  30.    
  31.   $i++; 
  32.  } 
  33. //开源代码phpfensi.com 
  34. closedir($dir_handle); 
  35.  

原文链接:http://www.phpfensi.com/php/20140819/4471.html


相关教程