php使用MySQL保存session会话的方法

本文实例讲述了php使用MySQL保存session会话的方法。分享给大家供大家参考。具体分析如下:

在很多大的系统中一般都有这个功能,但是要分离出来分析,网上的资料也不太多 这里我整理了一篇发出来与大家分享

使用MySQL保存session会话较files有很多优点:

1) 有利于分布式系统,files只能保存在一台机器上

2) 有利于大访问量的系统,使用files时每个session保存在一个文件中,目录会超级大,查找session文件会比较困难。

使用MySQL保存会话首先要创建session表:

  1. <?php
  2. $hostname_login = "localhost"; // Server address
  3. $username_login = "root"; // User name
  4. $password_login = ""; // Password
  5. //
  6. $data_name = "session"; // Database name
  7. $login = mysql_pconnect($hostname_login, $username_login, $password_login) or trigger_error(mysql_error(),E_USER_ERROR);
  8. $sql="SHOW DATABASES LIKE '".$data_name."'"; // If it is exist
  9. if($rs_table=mysql_query($sql,$login)) {
  10. if($rs_value=mysql_fetch_array($rs_table)) {
  11. echo "数据库已经存在!\n!";
  12. exit();
  13. }
  14. }
  15. $sql="CREATE DATABASE $data_name";
  16. mysql_query($sql); // Crate database
  17. echo "数据库创建成功!\n";
  18. mysql_select_db($data_name, $login);
  19. $sql="CREATE TABLE `sessions` (
  20. `SessionKey` varchar(32) NOT NULL default '',
  21. `SessionArray` blob NOT NULL,
  22. `SessionExpTime` int(20) unsigned NOT NULL default '0',
  23. PRIMARY KEY (`SessionKey`),
  24. KEY `SessionKey` (`SessionKey`)
  25. ) ENGINE=MyISAM DEFAULT CHARSET=utf8"; //新建数据库 sql语句
  26. mysql_query($sql);
  27. echo "成功新建数据库表!";
  28. ?>

MysqlSession 类如下:

  1. <?php
  2. class MysqlSession {
  3. // 注意在有使用Session的页面。页面一定要顶格,页面开始处不能留空。
  4. private $DB_SERVER = "localhost"; // 数据库服务器主机名
  5. private $DB_NAME = ""; // 数据库名字
  6. private $DB_USER = "root"; // MYSQL 数据库访问用户名
  7. private $DB_PASS = ""; // MYSQL 数据库访问密码
  8. private $DB_SELECT_DB = "";
  9. //private $SESS_LIFE = 1440; // Session的最大使用时长,单位秒。
  10. private $SESS_LIFE = 0;
  11. function MysqlSession (&$sessionDB) {
  12. //session_write_close();
  13. $this->DB_NAME = &$sessionDB;
  14. $this->SESS_LIFE = get_cfg_var("session.gc_maxlifetime");
  15. session_module_name('user');
  16. session_set_save_handler(
  17. array(&$this, 'sess_open'),
  18. array(&$this, 'sess_close'),
  19. array(&$this, 'sess_read'),
  20. array(&$this, 'sess_write'),
  21. array(&$this, 'sess_destroy'),
  22. array(&$this, 'sess_gc')
  23. );
  24. session_start();
  25. }
  26. function sess_open($save_path, $session_name){ // 打开数据库连接
  27. if (! $this->DB_SELECT_DB = mysql_pconnect($this->DB_SERVER, $this->DB_USER, $this->DB_PASS)) {
  28. echo "SORRY! MYSQL ERROR : Can't connect to $this->DB_SERVER as $DB_USER";
  29. echo "MySQL Error: ", mysql_error();
  30. die;
  31. }
  32. if (! mysql_select_db($this->DB_NAME, $this->DB_SELECT_DB)) {
  33. echo "SORRY! MYSQL ERROR : Unable to select database $this->DB_NAME";
  34. die;
  35. }
  36. return true;
  37. }
  38. function sess_close() {
  39. return true;
  40. }
  41. function sess_read($SessionKey){
  42. $Query = "SELECT SessionArray FROM sessions WHERE SessionKey = '".$SessionKey."' AND SessionExpTime > " . time();
  43. // 过期不读取。
  44. $Result = mysql_query($Query, $this->DB_SELECT_DB);
  45. if (list($SessionArray) = mysql_fetch_row($Result)) {
  46. return $SessionArray;
  47. }
  48. return false;
  49. }
  50. function sess_write($SessionKey, $VArray) {
  51. $SessionExpTime = time() + $this->SESS_LIFE;
  52. // 更新Session过期时间,Session过期时间 = 最后一次更新时间 + Session的最大使用时长
  53. $SessionArray = addslashes($VArray);
  54. $Query = "INSERT INTO sessions (SessionKey,SessionExpTime,SessionArray) VALUES ('".$SessionKey."','".$SessionExpTime."','".$SessionArray."')";
  55. $Result = mysql_query($Query, $this->DB_SELECT_DB);
  56. if (!$Result){
  57. $Query = "UPDATE sessions SET SessionExpTime = '".$SessionExpTime."', SessionArray = '".$SessionArray."' WHERE SessionKey = '".$SessionKey."' AND SessionExpTime > " . time();
  58. $Result = mysql_query($Query, $this->DB_SELECT_DB);
  59. }
  60. return $Result;
  61. }
  62. function sess_destroy($SessionKey) {
  63. $Query = "DELETE FROM sessions WHERE SessionKey = '".$SessionKey."'";
  64. $Result = mysql_query($Query, $this->DB_SELECT_DB);
  65. return $Result;
  66. }
  67. function sess_gc($maxlifetime) {
  68. // 这个垃圾清除器系统调用。默认是1440秒清除一次。
  69. //参数可以在PHP.ini里面设置。
  70. $Query = "DELETE FROM sessions WHERE SessionExpTime < " . time();
  71. $Result = mysql_query($Query, $this->DB_SELECT_DB);
  72. return mysql_affected_rows($this->DB_SELECT_DB);
  73. }
  74. }
  75. ?>

用法:在原来使用 session_start 的地方,替换成 $session = new MysqlSession ()

注意:包含此程序前要打开数据库,主程序退出前不能关闭数据库,否则会出错。