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

PHP

Posted by arkgame