cache 缓存定时清除

清除缓存的时间是早上8点

// 清除缓存的时间是早上8点
        $clear_time = strtotime("8:00:00");
        $space_time = strtotime("23:59:00");
        $now_time   = strtotime(date("H:i:s", time()));
        $cache_time = $clear_time + $space_time - $now_time;
        Cache::set('province', $province, $cache_time);

猜你喜欢

转载自blog.csdn.net/hd2killers/article/details/80348495
今日推荐