PHPでフォルダのファイル数を取得するプログラム
PHPコード:
function getfilecounts($ff){
$dir = './’.$ff;
$handle = opendir($dir);
$i = 0;
while(false !== $file=(readdir($handle))){
if($file !== '.’ && $file != '..’)
{
$i++;
}
}
closedir($handle);
return $i;
}
Coding Changes the World
PHPコード:
function getfilecounts($ff){
$dir = './’.$ff;
$handle = opendir($dir);
$i = 0;
while(false !== $file=(readdir($handle))){
if($file !== '.’ && $file != '..’)
{
$i++;
}
}
closedir($handle);
return $i;
}