设置缓存数据获取缓存数据删除缓存数据设置缓存有效期ThinkCMF5 使用助手函数 cache进行缓存的操作 设置缓存数据cache('cmf_settings', $value); 获取缓存数据print_r(cache('cmf_settings')); 删除缓存数据cache('cmf_settings', NULL); 设置缓存有效期第三个参数为 int 代表缓存过期时间 cache('cmf_settings', $value,3600); 原文: https://www.thinkcmf.com/docs/cmf/缓存.html