ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` //获取缓存组件 $cache=\Yii::$app->cache; //add(),set()第三人参数为设置缓存的时间 单位 秒,时间到后,缓存就消失,返回false //$cache->add('key4','this is cache time',15); //$cache->set('key4','this is cache time',15); $data=$cache->get('key4'); var_dump($data); echo '<br>'; ```