|
Spidering Logs in Random Order in Admin Statistics (fixed with mod) May 20, 2010 02:57AM |
Registered: 3 years ago Posts: 13 |
rsort($contents);
function get_dir_contents($dir) {
$contents = Array();
if ($handle = opendir($dir)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != ".."
{
$contents[] = $file;
}
}
closedir($handle);
}
rsort($contents);
return $contents;
}
|
Re: Spidering Logs in Random Order in Admin Statistics (fixed with mod) May 20, 2010 03:01AM |
Registered: 3 years ago Posts: 13 |
|
Re: spider May 24, 2010 05:43PM |
Registered: 3 years ago Posts: 6 |
|
Re: Spidering Logs in Random Order in Admin Statistics (fixed with mod) July 23, 2010 10:49PM |
Registered: 3 years ago Posts: 13 |