Linux Nginx运行环境下严格区分大小写,数据类型。
问题所在:
cache(string $name = null, $value = '', $options = null, $tag = null),$options参数为有效时长,默认NULL,在Linux Nginx运行环境下$options使用默认值,此方法不起作用、报错。
cache('key','value')
解决方法:
将$expire默认值设置为0,$expire = intval($expire)。
vendor/topthink/framework/src/helper.php
function cache(string $name = null, $value = '', $options = null, $tag = null)
{
if (is_null($name)) {
return app('cache');
}
if ('' === $value) {
// 获取缓存
return 0 === strpos($name, '?') ? Cache::has(substr($name, 1)) : Cache::get($name);
} elseif (is_null($value)) {
// 删除缓存
return Cache::delete($name);
}
// 缓存数据
if (is_array($options)) {
$expire = $options['expire'] ?? null; //修复查询缓存无法设置过期时间
} else {
$expire = $options;
}
$expire = intval($expire);
if (is_null($tag)) {
return Cache::set($name, $value, $expire);
} else {
return Cache::tag($tag)->set($name, $value, $expire);
}
}