Yii::app()->cache 存入成功,但是读取失败 [ 1.1 版本 ]
找了2个半小时 发现是 file_contents
的 offset
在 7.1.0 以上支持了负值所以导致读取缓存失败!
yii/caching/cfileCache.php
protected function getValue($key)
{
$cacheFile=$this->getCacheFile($key);
if(($time=$this->filemtime($cacheFile))>time()) {
// return @file_get_contents($cacheFile, false, null, $this->embedExpiry ? 10 : -1);
return @file_get_contents($cacheFile, false, null, $this->embedExpiry ? 10 : 0);//php7.1以上增加了对负值的支持
}elseif($time>0) {
@unlink($cacheFile);
return false;
}
}
dahua 深圳
注册时间:2016-06-01
最后登录:2023-05-23
在线时长:46小时27分
最后登录:2023-05-23
在线时长:46小时27分
- 粉丝8
- 金钱4485
- 威望10
- 积分5045
共 1 条评论
学习了
。。。多谢大神分享