php实现目录下的文件读取功能

<?php

//这里实现 某个文件下的所有图片,并列出来!

header("Content-type:text/html;charset=utf8");
 
$handle=opendir(‘.‘);
echo "目录 handle: $handle\n";
echo "档案:\n";
while ($file = readdir($handle)) {
   if(@eregi("[_\.0-9a-z-]+[\.]+gif$",$file))
    echo "<img src=$file  width=100 height=100>";
}
closedir($handle); 




echo "<hr />";
 //这里实现 某文件夹下所有文件名
   echo "<li>用户上传的所有文件如下:<li>";
   $config_basedir_file="./uploadify_img/";
   if ($handle = opendir("./uploadify_img/"))
   {   
      while (1)
      {
            $ufile = readdir($handle);
            if ($ufile == "") break;
            if (($ufile!=".")&($ufile!= ".."))
            {
                  $tfile=iconv(‘GB2312‘, ‘UTF-8‘, $ufile);
                  echo "<li><a href=‘".$config_basedir_file.$tfile."‘>".$tfile."</a></li>";
            }
 
      }
}
 echo "<hr />";


?>

php实现目录下的文件读取功能,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。