Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

解决删除缓存文件时,文件不存在的问题 #2089

Open
wants to merge 3 commits into
base: 5.1
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions library/think/cache/driver/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function get($name, $default = false)
return $default;
}

$content = file_get_contents($filename);
$content = @file_get_contents($filename);
hongweipeng marked this conversation as resolved.
Show resolved Hide resolved
$this->expire = null;

if (false !== $content) {
Expand Down Expand Up @@ -299,7 +299,11 @@ public function clear($tag = null)
*/
private function unlink($path)
{
return is_file($path) && unlink($path);
try {
return is_file($path) && unlink($path);
hongweipeng marked this conversation as resolved.
Show resolved Hide resolved
} catch (\Exception $e) {
return false;
}
}

}