clean all temporary files after 15min
This commit is contained in:
parent
3e4d0276c4
commit
e4855fe538
|
@ -157,15 +157,15 @@ class Ldap{
|
|||
// change random number
|
||||
mt_srand($this->rand + (microtime() * 1000000));
|
||||
$this->rand = mt_rand();
|
||||
// delete PDF files and images which are older than 10 min
|
||||
// delete PDF files and images which are older than 15 min
|
||||
$tmpDir = dirname(__FILE__) . '/../tmp/';
|
||||
$time = time();
|
||||
$dir = @opendir($tmpDir);
|
||||
$file = @readdir($dir);
|
||||
while ($file) {
|
||||
if ((substr($file, -4) == '.pdf') || (substr($file, -4) == '.jpg') || (substr($file, -4) == '.zip')) {
|
||||
$path = $tmpDir . $file;
|
||||
if ($time - filemtime($path) > 600) {
|
||||
if (($file != '.') && ($file != '..') && ($file != '.htaccess') && !is_dir($path)) {
|
||||
if ($time - filemtime($path) > 900) {
|
||||
@unlink($path);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue