function count_dir($dir) { $count=0; $newcount=0; $path = opendir($dir); while ($file = readdir($path)) { if (( $file != ".")&&($file != "..")&&($file != ".htaccess")&&($file != "index.php")&&($file != "name.dat")&& !ereg (".txt$", "$file")&& !ereg (".JPG$", "$file")&& !ereg (".GIF$", "$file")) { $count ++; $filetime=filemtime("$dir/$file")+(3600*24*5); if($filetime>SITETIME){ $newcount ++; } }} if($newcount>0){ $input=(int)$count.'/+'.(int)$newcount; }else{ $input=(int)$count; } closedir ($path); return $input; }
ramzes (Сегодня / 20:41) 4, а адрес папки которую считаешь кто за тебя указывать будет?
<?php echo count_dir('download'); ?>