会话开始没有锁定?还是一个解决方法?

时间:2013-09-28 13:29:44

标签: php session

我已经对会话启动以及为什么它锁定了我所有其他的ajax请求做了一些研究。 我发现用户的会话被锁定,直到页面执行完毕或调用了session_write_close()。

使用session_set_save_handler你可以为会话设置你自己的处理程序,但我不知道它是如何工作的以及我怎么不能锁定会话而只能读取它。

有人在session_set_save_handler上有一个例子吗? 或者是只有只读会话/解锁会话的其他解决方法吗?

1 个答案:

答案 0 :(得分:0)

使用数据库保存PHP会话可以避免锁定ajax请求。 session_set_save_handler允许。

您需要使用类似于此的开放,关闭,读取,写入,销毁,gc方法创建一个类:

        /**
         * DBSession
         */
        class DBSession
        {

            /**
             * Db Object
             */
            private $db;

            public function __construct(){

                 $this->db = new DB; //initialise in your database connection object
            }

            /**
             * Open
             */
            public function open()
            {
                // If successful
                if ($this->db) {
                    // Return True
                    return true;
                }
                // Return False
                return false;
            }

            /**
             * Close
             */
            public function close()
            {
                // Close the database connection
                // If successful
                if ($this->db->close()) {
                    // Return True
                    return true;
                }
                // Return False
                return false;
            }

            /**
             * Read
             */
            public function read($id)
            {
                // Set query
                $this->db->query('SELECT data FROM sessions WHERE id = :id');

                // Bind the Id
                $this->db->bind(':id', $id);

                // Attempt execution
                // If successful
                if ($this->db->execute()) {
                    // Save returned row
                    $row = $this->db->single();
                    // Return the data
                    return $row['data'];
                } else {
                    // Return an empty string
                    return '';
                }
            }

            /**
             * Write
             */
            public function write($id, $data)
            {
                // Create time stamp
                $access = time();

                // Set query  
                $this->db->query('REPLACE INTO sessions VALUES (:id, :access, :data)');

                // Bind data
                $this->db->bind(':id', $id);
                $this->db->bind(':access', $access);
                $this->db->bind(':data', $data);

                // Attempt Execution
                // If successful
                if ($this->db->execute()) {
                    // Return True
                    return true;
                }

                // Return False
                return false;
            }

            /**
             * Destroy
             */
            public function destroy($id)
            {
                // Set query
                $this->db->query('DELETE FROM sessions WHERE id = :id');

                // Bind data
                $this->db->bind(':id', $id);

                // Attempt execution
                // If successful
                if ($this->db->execute()) {
                    // Return True
                    return true;
                }

                // Return False
                return false;
            }

            /**
             * Garbage Collection
             */
            public function gc($max)
            {
                // Calculate what is to be deemed old
                $old = time() - $max;

                // Set query
                $this->db->query('DELETE * FROM sessions WHERE access < :old');

                // Bind data
                $this->db->bind(':old', $old);

                // Attempt execution
                if ($this->db->execute()) {
                    // Return True
                    return true;
                }

                // Return False
                return false;
            }
        }

然后开始你的会话你可以:

$dbSession = new DBSession();

session_set_save_handler(
  array($dbSession, "open"),
  array($dbSession, "close"),
  array($dbSession, "read"),
  array($dbSession, "write"),
  array($dbSession, "destroy"),
  array($dbSession, "gc")
);

session_start();

或者,您可以将session_set_save_handler调用和session_start()移动到DBSession类的构造函数。在这种情况下,您只需在脚本的开头启动DBSession实例。

实际上,PHP手册已经有了一些例子: http://php.net/manual/en/function.session-set-save-handler.php