码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2014-07-01 11:19:52      阅读:233      评论:0      收藏:0      [点我收藏+]

标签: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实现目录下的文件读取功能,布布扣,bubuko.com

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

标签:php文件

原文地址:http://blog.csdn.net/qq1355541448/article/details/36015375

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!