发新帖

[PHP] [Linux] [Nginx] [ThinkPHP] Nginx 下 tp6 cache缓存不能存入参数解决方法

零下一度 2022-8-12 822

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);

}

}


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1