-
php实现将Session写入数据库
这篇文章主要介绍了php实现将Session写入数据库的相关资料,需要的朋友可以参考下,使用session_set_save_handler()函数,将Session的内容写入数据库。
- <?php
- /*
- *@author Fahy
- *数据库为mysql,
- *数据库名为session,表名为session,
- *表中字段包括PHPSESSID,update_time,client_ip,data
- */
- class Session{
- private static $handler = null;
- private static $ip = null;
- private static $lifetime = null;
- private static $time = null;
- //配置静态变量
- private static function init($handler){
- self::$handler = $handler; //获取数据库资源
- self::$ip = !emptyempty($_SERVER["REMOTE_ADDR"])? $_SERVER["REMOTE_ADDR"]:'unkonw'; //获取客户端ip
- self::$lifetime = ini_get('session.gc_maxlifetime'); //获取session生命周期
- self::$time = time(); //获取当前时间
- }
- //调用session_set_save_handler()函数并开启session
- static function start($pdo){
- self::init($pdo);
- session_set_save_handler(
- array(__CLASS__,'open'),
- array(__CLASS__,'close'),
- array(__CLASS__,'read'),
- array(__CLASS__,'write'),
- array(__CLASS__,'destroy'),
- array(__CLASS__,'gc')
- );
- session_start();
- }
- public static function open($path,$name){
- return true;
- }
- public static function close(){
- return true;
- }
- //查询数据库中的数据
- public static function read($PHPSESSID){
- $sql = "select PHPSESSID,update_time,client_ip,data from session where PHPSESSID=?";
- $stmt = self::$handler->prepare($sql);
- $stmt->execute(array($PHPSESSID));
- if(!$result = $stmt->fetch(PDO::FETCH_ASSOC)){
- return '';
- }
- if(self::$ip == $result['client_ip']){
- self::destroy($PHPSESSID);
- return '';
- }
- if(($result['update_time']+self::$lifetime)<self::$time){
- self::destroy($PHPSESSID);
- return '';
- }
- return $result['data'];
- }
- /*
- *首先查询该session是否存在数据,如果存在,则更新数据,如果不存在,则插入数据
- */
- //将session写入数据库中,$data传入session中的keys和values数组
- public static function write($PHPSESSID,$data){
- $sql = "select PHPSESSID,update_time,client_ip,data from session where PHPSESSID=?";
- $stmt = self::$handler->prepare($sql);
- $stmt->execute(array($PHPSESSID));
- if($result=$stmt->fetch(PDO::FETCH_ASSOC)){
- if($result['data'] != $data || self::$time > ($result['update_time']+30)){
- $sql = "update session set update_time=?,data=? where PHPSESSID = ?";
- $stmt = self::$handler->prepare($sql);
- $stmt->execute(array($self::$time,$data,$PHPSESSID));
- }
- }else{
- if(!emptyempty($data)){
- try{
- $sql = "insert into session(PHPSESSID,update_time,client_ip,data) values(?,?,?,?)";
- }catch(PDOException $e){
- echo $e->getMessage();
- }
- $sth = self::$handler->prepare($sql);
- $sth->execute(array($PHPSESSID,self::$time,self::$ip,$data));
- }
- }
- return true;
- }
- public static function destroy($PHPSESSID){
- $sql = "delete from session where PHPSESSID = ?";
- $stmt = self::$handler->prepare($sql);
- $stmt->execute(array($PHPSESSID));
- return true;
- }
- public static function gc($lifetime){
- $sql = "delete from session where update_time<?";
- $stmt = self::$handler->prepare($sql);
- $stmt->execute(array(self::$time-$lifetime));
- return true;
- }
- }
- //使用PDO连接数据库
- try{
- $pdo = new PDO("mysql:host=localhost;dbname=session","root","hwj193");
- }catch(PDOException $e){
- echo $e->getMessage();
- }
- //传递数据库资源
- Session::start($pdo);
以上所述就是本文的全部内容了,希望大家能够喜欢。
出处:http://www.phpfensi.com/php/20210614/16285.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式