S(‘xx’,$get_return[‘access_token’],7300);
这里的S方法的缓存时间,经测试无效。
解决方案:
$cache = cache(array(‘type’=>’file’,’expire’=>7200)); //定义
$cache->set(‘xx’,$get_return[‘access_token’]); //缓存
$cache->get(‘xx’);//获取缓存
经测试,这里的缓存时间有效。
不知道是不是版本的问题,以后用到缓存时间都要看看,不然都是永久缓存。。