欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

redis 替代php文件存储session

程序员文章站 2022-03-28 10:35:38
...
查看实例之前请先了解 PHP session_set_save_handler函数的用法

定义个SessionManager 类
class SessionManager {
private $redis;
public function __construct(){
$this->redis = new Redis();
$this->redis->connect('192.168.0.102', 6379);
$retval =session_set_save_handler(
array($this,"open"),
array($this,"close"),
array($this,"read"),
array($this,"write"),
array($this,"destroy"),
array($this,"gc")
);
session_start();
}
public function open($path,$name){
return true;
}
public function close(){
return true;
}
public function read($id){
$session_value = $this->redis->get($id);
if($session_value){
return $session_value;
}else{
return "";
}
}
public function write($id,$data){
if($this->redis->set($id,$data)){
return true;
}else{
return false;
}
}
public function destroy($id){
if($this->redis->delete($id)){
return true;
}else{
return false;
}
}
public function gc($maxlifetime){
return true;
}
public function __destruct(){
session_write_close();
}
}

创建一个session_set.php 代码如下

include("SessionManager.php");
new SessionManager();
$_SESSION['user_name']="xxdcsnd@sina.com";

创建一个session_set.php 代码如下

include("SessionManager.php");
new SessionManager();
echo $_SESSION['user_name'];

测试输出 结果 xxdcsnd@sina.com

注意 :php.ini session.save-hadler 设置为 user ,否则session_set_save_handler 不会生效

以上就介绍了redis 替代php文件存储session,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。