Lines Matching refs:cacheFile
85 $cacheFile = self::getCacheFile($key);
87 if (!file_exists($cacheFile)) {
92 $mtime = filemtime($cacheFile);
94 @unlink($cacheFile);
98 $contents = @file_get_contents($cacheFile);
105 @unlink($cacheFile);
130 $cacheFile = self::getCacheFile($key);
134 $tempFile = $cacheFile . '.tmp';
139 if (!@rename($tempFile, $cacheFile)) {
161 $cacheFile = self::getCacheFile($key);
162 if (file_exists($cacheFile)) {
163 @unlink($cacheFile);