php中设置redis当天失效的key

平时经常需要使用到`redis`

在实际应用中,我们经常需要设置当天就`失效的key`

比如当天留言的次数不能超过3次,如果超过3次,则今天不能再继续留言

```
redis->incr($msg_times);
if($this->redis->get($msg_times) == 3) {
$this->redis->expire($msg_times, strtotime(date('Y-m-d').'23:59:59') - time());
}
?>
```

    A+
发布日期:2020年10月31日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: