当前位置:Gxlcms > PHP教程 > php遍历文件夹(取得文件名)

php遍历文件夹(取得文件名)

时间:2021-07-01 10:21:17 帮助过:18人阅读

php遍历文件夹(获得文件名)
http://www.cublog.cn/u1/43167/showart_374765.html

function listFile($dir)
{ 
 $fileArray = array();
 $cFileNameArray = array();
 if($handle = opendir($dir))
 {
  while(($file = readdir($handle)) !== false)
  {
    if($file !="." && $file !="..")
   {
     if(is_dir($dir."\\".$file))
    {
      $cFileNameArray = listFile($dir."\\".$file);
      for($i=0;$i
                     

人气教程排行