cache: check if cache folder exists
This commit is contained in:
parent
40fdb17280
commit
c13c7a1d25
1 changed files with 13 additions and 11 deletions
24
index.php
24
index.php
|
@ -26,17 +26,19 @@ ini_set('user_agent', 'Mozilla/5.0 (X11; Linux x86_64; rv:30.0) Gecko/20121202 F
|
|||
// cache file purge - delete cache files older than 24 hours
|
||||
$cacheTimeLimit = time() - 60*60*24 ;
|
||||
$cachePath = 'cache';
|
||||
$cacheIterator = new RecursiveIteratorIterator(
|
||||
new RecursiveDirectoryIterator($cachePath),
|
||||
RecursiveIteratorIterator::CHILD_FIRST
|
||||
);
|
||||
foreach ($cacheIterator as $cacheFile) {
|
||||
if (in_array($cacheFile->getBasename(), array('.', '..')))
|
||||
continue;
|
||||
elseif ($cacheFile->isFile()) {
|
||||
if( filemtime($cacheFile->getPathname()) < $cacheTimeLimit )
|
||||
unlink( $cacheFile->getPathname() );
|
||||
}
|
||||
if(file_exists($cachePath)) {
|
||||
$cacheIterator = new RecursiveIteratorIterator(
|
||||
new RecursiveDirectoryIterator($cachePath),
|
||||
RecursiveIteratorIterator::CHILD_FIRST
|
||||
);
|
||||
foreach ($cacheIterator as $cacheFile) {
|
||||
if (in_array($cacheFile->getBasename(), array('.', '..')))
|
||||
continue;
|
||||
elseif ($cacheFile->isFile()) {
|
||||
if( filemtime($cacheFile->getPathname()) < $cacheTimeLimit )
|
||||
unlink( $cacheFile->getPathname() );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// default whitelist
|
||||
|
|
Loading…
Reference in a new issue