【问题标题】:Troubles with Codeigniter's Native SessionCodeigniter 的本机会话的问题
【发布时间】:2013-03-02 15:00:11
【问题描述】:

我正在使用 Codeigniter 的本机会话类来存储用户信息,但我遇到了一个严重的问题。当用户闲置约半小时并将其注销时,会话似乎超时。

我的配置文件如下所示:

$config['sess_cookie_name'] = 'cisession';
$config['sess_expiration'] = 60*60*24*30*12*2;
$config['sess_expire_on_close'] = FALSE;
$config['sess_encrypt_cookie'] = FALSE;
$config['sess_use_database'] = FALSE;
$config['sess_table_name'] = 'ci_sessions';
$config['sess_match_ip'] = FALSE; 
$config['sess_match_useragent'] = TRUE;
$config['sess_time_to_update'] = 7200;

浏览器中的 PHPSESSID 在用户退出时不会被销毁,并且它会在两年后过期,因为我在配置文件中设置了它。

我不知道本机会话类的常见问题是什么,因为每个人似乎都对它感到满意,所以有人可以找出最有可能导致此问题的原因是什么?

编辑:对于那些不熟悉 codeigniter 的本地会话类的人,这里是链接 http://codeigniter.com/wiki/Native_session

【问题讨论】:

    标签: php codeigniter session


    【解决方案1】:

    我也使用 codeigniter 的原生类。也许你没有正确配置它。这是我从他那里得到的代码。 https://github.com/EllisLab/CodeIgniter/wiki

    <?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
    
    
    
        class CI_Session {
    
        var $session_id_ttl; // session id time to live (TTL) in seconds
        var $flash_key = 'flash'; // prefix for "flash" variables (eg. flash:new:message)
    
        function __construct()
        {
            log_message('debug', "Native_session Class Initialized");
            $this->object =& get_instance(); 
            $this->_sess_run();
        }
    
        /**
        * Regenerates session id
        */
        function regenerate_id()
        {
            // copy old session data, including its id
            $old_session_id = session_id();
            $old_session_data = $_SESSION;
    
            // regenerate session id and store it
            session_regenerate_id();
            $new_session_id = session_id();
    
            // switch to the old session and destroy its storage
            session_id($old_session_id);
            session_destroy();
    
            // switch back to the new session id and send the cookie
            session_id($new_session_id);
            session_start();
    
            // restore the old session data into the new session
            $_SESSION = $old_session_data;
    
            // update the session creation time
            $_SESSION['regenerated'] = time();
    
            // session_write_close() patch based on this thread
            // http://www.codeigniter.com/forums/viewthread/1624/
            // there is a question mark ?? as to side affects
    
            // end the current session and store session data.
            session_write_close();
        }
    
        /**
        * Destroys the session and erases session storage
        */
        function destroy()
        {
            unset($_SESSION);
            if ( isset( $_COOKIE[session_name()] ) )
            {
                  setcookie(session_name(), '', time()-42000, '/');
            }
            session_destroy();
        }
    
        /**
        * Reads given session attribute value
        */    
        function userdata($item)
        {
            if($item == 'session_id'){ //added for backward-compatibility
                return session_id();
            }else{
                return ( ! isset($_SESSION[$item])) ? false : $_SESSION[$item];
            }
        }
    
        /**
        * Sets session attributes to the given values
        */
        function set_userdata($newdata = array(), $newval = '')
        {
            if (is_string($newdata))
            {
                $newdata = array($newdata => $newval);
            }
    
            if (count($newdata) > 0)
            {
                foreach ($newdata as $key => $val)
                {
                    $_SESSION[$key] = $val;
                }
            }
        }
    
        /**
        * Erases given session attributes
        */
        function unset_userdata($newdata = array())
        {
            if (is_string($newdata))
            {
                $newdata = array($newdata => '');
            }
    
            if (count($newdata) > 0)
            {
                foreach ($newdata as $key => $val)
                {
                    unset($_SESSION[$key]);
                }
            }        
        }
    
        /**
        * Starts up the session system for current request
        */
        function _sess_run()
        {
            session_start();
    
            $session_id_ttl = $this->object->config->item('sess_expiration');
    
            if (is_numeric($session_id_ttl))
            {
                if ($session_id_ttl > 0)
                {
                    $this->session_id_ttl = $this->object->config->item('sess_expiration');
                }
                else
                {
                    $this->session_id_ttl = (60*60*24*365*2);
                }
            }
    
            // check if session id needs regeneration
            if ( $this->_session_id_expired() )
            {
                // regenerate session id (session data stays the
                // same, but old session storage is destroyed)
                $this->regenerate_id();
            }
    
            // delete old flashdata (from last request)
            $this->_flashdata_sweep();
    
            // mark all new flashdata as old (data will be deleted before next request)
            $this->_flashdata_mark();
        }
    
        /**
        * Checks if session has expired
        */
        function _session_id_expired()
        {
            if ( !isset( $_SESSION['regenerated'] ) )
            {
                $_SESSION['regenerated'] = time();
                return false;
            }
    
            $expiry_time = time() - $this->session_id_ttl;
    
            if ( $_SESSION['regenerated'] <=  $expiry_time )
            {
                return true;
            }
    
            return false;
        }
    
        /**
        * Sets "flash" data which will be available only in next request (then it will
        * be deleted from session). You can use it to implement "Save succeeded" messages
        * after redirect.
        */
        function set_flashdata($key, $value)
        {
            $flash_key = $this->flash_key.':new:'.$key;
            $this->set_userdata($flash_key, $value);
        }
    
        /**
        * Keeps existing "flash" data available to next request.
        */
        function keep_flashdata($key)
        {
            $old_flash_key = $this->flash_key.':old:'.$key;
            $value = $this->userdata($old_flash_key);
    
            $new_flash_key = $this->flash_key.':new:'.$key;
            $this->set_userdata($new_flash_key, $value);
        }
    
        /**
        * Returns "flash" data for the given key.
        */
        function flashdata($key)
        {
            $flash_key = $this->flash_key.':old:'.$key;
            return $this->userdata($flash_key);
        }
    
        /**
        * PRIVATE: Internal method - marks "flash" session attributes as 'old'
        */
        function _flashdata_mark()
        {
            foreach ($_SESSION as $name => $value)
            {
                $parts = explode(':new:', $name);
                if (is_array($parts) && count($parts) == 2)
                {
                    $new_name = $this->flash_key.':old:'.$parts[1];
                    $this->set_userdata($new_name, $value);
                    $this->unset_userdata($name);
                }
            }
        }
    
        /**
        * PRIVATE: Internal method - removes "flash" session marked as 'old'
        */
        function _flashdata_sweep()
        {
            foreach ($_SESSION as $name => $value)
            {
                $parts = explode(':old:', $name);
                if (is_array($parts) && count($parts) == 2 && $parts[0] == $this->flash_key)
                {
                    $this->unset_userdata($name);
                }
            }
        }
    
    }
    

    【讨论】:

      【解决方案2】:

      PHP 会话在 1440 秒(24 分钟)后过期。

      http://php.net/manual/en/session.configuration.php

      【讨论】:

      • CodeIgniter 不使用 PHP 会话。它有一个自定义的基于 cookie 的实现。
      • @Gurrewe 是的,我知道,但是配置文件中的行 $config['sess_expiration'] = 60*60*24*30*12*2;应该覆盖该规则并将其设置为会话在两年内到期。
      • @Narf 我不使用 codeigniter 的默认会话类,而是自动加载本机会话,其行为类似于 php 会话并且不使用 cookie 来存储信息
      • @Mad_Eye 嗯……这些配置变量是为 CodeIgniter 的会话库设计的。除非您显示您正在使用的课程 - 我们甚至无法猜测问题所在。
      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2012-02-10
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多