Lines Matching refs:cacheFile
84 $cacheFile = self::getCacheFile($key);
86 if (!file_exists($cacheFile)) {
91 $mtime = filemtime($cacheFile);
93 @unlink($cacheFile);
97 $contents = @file_get_contents($cacheFile);
104 @unlink($cacheFile);
129 $cacheFile = self::getCacheFile($key);
133 $tempFile = $cacheFile . '.tmp';
138 if (!@rename($tempFile, $cacheFile)) {
160 $cacheFile = self::getCacheFile($key);
161 if (file_exists($cacheFile)) {
162 @unlink($cacheFile);