Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
23 righe
520 B
23 righe
520 B
<? |
|
if (isset($config)) { |
|
alertManager::printCliInfo("Eliminazione log queue"); |
|
$days = 7; |
|
$path = $config["queue_log"]; |
|
if (file_exists($path)) { |
|
if ($handle = opendir($path)) |
|
{ |
|
while (false !== ($file = readdir($handle))) |
|
{ |
|
$file = $path.DIRECTORY_SEPARATOR.$file; |
|
if (is_file($file)) |
|
{ |
|
if (filemtime($file) < ( time() - ( $days * 24 * 60 * 60 ) ) ) |
|
{ |
|
unlink($file); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
?>
|