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);
}
}
?>

猜你在找的PHP相关文章