<?php
# 获得Redis实例
$redis = new Redis();
# 设置Redis参数
$host = '127.0.0.1'; // string 服务地址
$port = 6379; // int 端口号
$time = 30; // float 链接时长 (可选,默认为0,不限链接时间)
$redis->connect($host, $port, $time);
# 设置一个带有过期时间的字符串数据
# 表示存储有效期为10S
$redis->setex('num', 10, '1');
echo $redis->get('num');
转载原创文章请注明,转载自:
4、PHP-Redis,setex()设置一个带有过期时间的字符串数据
-
冯俊豪博客
(https://junphp.com/details/29.jsp)