PHP读取目录下所有文件的代码
PHP读取目录下所有文件的代码
读取目录下所有文件的代码,可以不管文件名
<div class="codetitle"><a style="CURSOR: pointer" data="82714" class="copybut" id="copybut82714" onclick="doCopy('code82714')"> 代码如下:
<div class="codebody" id="code82714">
<?PHP
$dir="file"; //Openaknowndirectory,andproceedtoreaditscontents
if(is_dir($dir)){
if($dh=opendir($dir)){ while(($file=readdir($dh))!==false){
if($file!="."&&$file!=".."){
echo"<ahref=file/".$file.">".$file."
";
}
}
closedir($dh);
}
}
?>