当前位置:Gxlcms > PHP教程 > PHP获取文件夹内文件数的方法_php技巧

PHP获取文件夹内文件数的方法_php技巧

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

本文实例讲述了PHP获取文件夹内文件数的方法。分享给大家供大家参考。具体实现方法如下:

function getfilecounts($ff){
 $dir = './'.$ff;
 $handle = opendir($dir);
 $i = 0;
 while(false !== $file=(readdir($handle))){
  if($file !== '.' && $file != '..')
  {
    $i++;
   }
 }
 closedir($handle);
return $i;
}

希望本文所述对大家的php程序设计有所帮助。

人气教程排行