Table of Contents
php利用session_set_save_handler()函数将session保存到MySQL数据库中
您可能感兴趣的文章
Home php教程 php手册 php利用session_set_save_handler()函数将session保存到MySQL数据库中

php利用session_set_save_handler()函数将session保存到MySQL数据库中

Jun 13, 2016 am 09:22 AM
mysql php session

php利用session_set_save_handler()函数将session保存到MySQL数据库中

PHP保存session默认的是采用的文件的方式来保存的,这仅仅在文件的空间开销很小的windows上是可以采用的,但是如果我们采用uinx或者是liux上的文件系统的时候,这样的文件系统的文件空间开销是很大的,然而session是要时时刻刻的使用的,大量的用户就要创建很多的session文件,这样对整个的服务器带来性能问题。

另一方面,如果服务器起采用群集的方式的话就不能保持session的一致性,所以我们就绪要采用数据库的方式来保存session,这样,不管有几台服务器同时使用,只要把他们的session保存在一台数据库服务器上就可以保证session的完整了,具体如何来实现请继续看下去。

PHP保存session默认的情况下是采用的文件方式来保存的,我们在PHP的配制文件PHP.ini中可以看到这样的一行:

session.save_handler="files"

这样的意思就是采用文件来保存session 的,要采用数据库来保存的话,我们需要修改成用户模式,改成

session.save_handler="use"

就可以了,但是,这仅仅是说明我门没有采用文件的方式存储session,我们还要选择数据库和建立数据库的表。

建立数据库和数据库的表结构,我们可以采用PHP可以使用的任何的数据库,因为PHP和mysql的结合最好,我就使用mysql来做示例,当然根据你的需要可以改称别的数据库。

创建数据库

create database 'session';

创建表结构

create table 'session'( id char(32) not null , 'user 'char(30), data char(3000) ,primary key ('id') );

PHP保存session编写PHP文件

<?php
$con = mysql_connect("127.0.0.1", "user" , "pass");
mysql_select_db("session");
function open($save_path, $session_name) {
	return(true);
}
function close() {
	return(true);
}
function read($id) {
	if ($result = mysql_query("select * from session where id='$id'")) {
		if ($row = mysql_felth_row($result)) {
			return $row["data"];
		}
	} else {
		return "";
	}
}
function write($id, $sess_data) {
	if ($result = mysql_query("update session set data='$sess_data' where id='$id'")) {
		return true;
	} else {
		return false;
	}
}
function destroy($id) {
	if ($result = mysql_query("delete * from session where id='$id'")) {
		return true;
	} else {
		return false;
	}
}
function gc($maxlifetime) {
	return true;
}
session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
session_start();
// proceed to use sessions normally
Copy after login

保存成为session_user_start.php。

现在我们的PHP保存session的工作就已经完成了,只要你在需要在使用session的时候,把session_user_start.php包含进来.注意,这个文件一定要在文件的第一行包含,然后就像使用文件的session一样的方法使用就可以了。


以上仅仅是个简单教程,在实际的应用中,可以对它封装得更专业些,参考代码如下:

SessionMysql.class.php

<?php
/**
 * SessionMysql 数据库存储类
 */

defined('IN_QIAN') or exit('Access Denied');

class SessionMysql {

	public $lifetime = 1800; // 有效期,单位:秒(s),默认30分钟
	public $db;
	public $table;

	/**
	 * 构造函数
	 */
	public function __construct() {
		$this->db = Base::loadModel('SessionModel');
		$this->lifetime = Base::loadConfig('system', 'session_lifetime');
		session_set_save_handler(
			array(&$this, 'open'),		// 在运行session_start()时执行
			array(&$this, 'close'),		// 在脚本执行完成 或 调用session_write_close() 或 session_destroy()时被执行,即在所有session操作完后被执行
			array(&$this, 'read'),		// 在运行session_start()时执行,因为在session_start时,会去read当前session数据
			array(&$this, 'write'),		// 此方法在脚本结束和使用session_write_close()强制提交SESSION数据时执行
			array(&$this, 'destroy'),	// 在运行session_destroy()时执行
			array(&$this, 'gc')			// 执行概率由session.gc_probability 和 session.gc_divisor的值决定,时机是在open,read之后,session_start会相继执行open,read和gc
		);
		session_start(); // 这也是必须的,打开session,必须在session_set_save_handler后面执行
	}
	/**
	 * session_set_save_handler open方法
	 *
	 * @param $savePath
	 * @param $sessionName
	 * @return true
	 */
	public function open($savePath, $sessionName) {
		return true;
	}
	/**
	 * session_set_save_handler close方法
	 *
	 * @return bool
	 */
	public function close() {
		return $this->gc($this->lifetime);
	}
	/**
	 * 读取session_id
	 *
	 * session_set_save_handler read方法
	 * @return string 读取session_id
	 */
	public function read($sessionId) {
		$condition = array(
			'where' => array(
				'session_id' => $sessionId
			),
			'fields' => 'data'
		);
		$row = $this->db->fetchFirst($condition);
		return $row ? $row['data'] : '';
	}
	/**
	 * 写入session_id 的值
	 *
	 * @param $sessionId 会话ID
	 * @param $data 值
	 * @return mixed query 执行结果
	 */
	public function write($sessionId, $data) {
		$userId = isset($_SESSION['userId']) ? $_SESSION['userId'] : 0;
		$roleId = isset($_SESSION['roleId']) ? $_SESSION['roleId'] : 0;
		$grouId = isset($_SESSION['grouId']) ? $_SESSION['grouId'] : 0;
		$m = defined('ROUTE_M') ? ROUTE_M : '';
		$c = defined('ROUTE_C') ? ROUTE_C : '';
		$a = defined('ROUTE_A') ? ROUTE_A : '';
		if (strlen($data) > 255) {
			$data = '';
		}
		$ip = get_ip();
		$sessionData = array(
			'session_id'	=> $sessionId,
			'user_id'		=> $userId,
			'ip'			=> $ip,
			'last_visit'	=> SYS_TIME,
			'role_id'		=> $roleId,
			'group_id'		=> $grouId,
			'm'				=> $m,
			'c'				=> $c,
			'a'				=> $a,
			'data'			=> $data,
		);
		return $this->db->insert($sessionData, 1, 1);
	}
	/**
	 * 删除指定的session_id
	 *
	 * @param string $sessionId 会话ID
	 * @return bool
	 */
	public function destroy($sessionId) {
		return $this->db->delete(array('session_id' => $sessionId));
	}
	/**
	 * 删除过期的 session
	 *
	 * @param $lifetime session有效期(单位:秒)
	 * @return bool
	*/
	public function gc($lifetime) {
		$expireTime = SYS_TIME - $lifetime;
		return $this->db->delete("`last_visit`<$expireTime");
	}
}
Copy after login

在系统文件的某个地方,实例化这个类即可!

new SessionMysql();

您可能感兴趣的文章

  • php获取目录所有文件并将结果保存到数组的程序
  • php利用array_flip实现数组键值交换去除数组重复值
  • php利用filter函数验证邮箱、url和ip地址的方法
  • windows环境下mysql数据库的主从同步备份步骤
  • php用ZipArchive函数实现文件的压缩与解压缩
  • php get_headers函数的作用及用法
  • PHP 利用 Curl Functions 实现多线程抓取网页和下载文件
  • 用PHP函数memory_get_usage获取当前PHP内存消耗量以实现程序的性能优化
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Top 10 PHP CMS Platforms For Developers in 2024 Top 10 PHP CMS Platforms For Developers in 2024 Dec 05, 2024 am 10:29 AM

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content

The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? The page is blank after PHP is connected to MySQL. What is the reason for the invalid die() function? Apr 01, 2025 pm 03:03 PM

The page is blank after PHP connects to MySQL, and the reason why die() function fails. When learning the connection between PHP and MySQL database, you often encounter some confusing things...

See all articles