File size: 704B
<?php
$dir = opendir ("local/datatop/");
while($file = readdir ($dir))
{
if(( $file != ".") && ($file != "..") && ($file != ".htaccess") && ($file != "index.php")&& ($file != "all.dat")&& ($file != "data")&& ($file != "online"))
{
$a[] = $file;
}
}
closedir($dir);
$total = count($a);
for($i = 0; $i < $total; $i++)
{
$dir = opendir("local/datatop/$a[$i]");
while($file = readdir ($dir))
{
if(( $file != ".") && ($file != "..") && ($file != ".htaccess") && ($file != "index.php"))
{
$a[] = $file;
}
}
closedir($dir);
}
$tot = count($a);
$to = round($tot-$total);
echo "$to <br>";
?>