首页 > 代码库 > php实现目录下的文件读取功能
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=http://www.mamicode.com/$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=http://www.mamicode.com/‘".$config_basedir_file.$tfile."‘>".$tfile."";
}
}
}
echo "<hr />";
?>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。