我将会话数据存储在数据库中。在类Session中是存储函数,用于存储和检索数据。
现在我的问题是:
我是否需要在运行时配置中更改session.save_handler的值,因为默认设置为'files', 或者函数session_set_save_handler是否覆盖(忽略)那个?
如果启用了session.auto_start,那么使用哪个处理程序呢?
这是课堂会话的最小化版本:
class Session
{
public function __construct($registry, $sessionhash = '', $userid = 0, $password = '')
{
$this->config = cl_Config::instance();
$this->db = cl_Database::instance($this->config);
$this->hasher = cl_Hasher::instance();
// Register this object as the session handler
session_set_save_handler(
array( $this, "open" ),
array( $this, "close" ),
array( $this, "read" ),
array( $this, "write"),
array( $this, "destroy"),
array( $this, "gc" )
);
function open( $save_path, $session_name )
{
...
return true;
}
function close( $save_path, $session_name )
{
...
return true;
}
function read( $id )
{
...
}
function write( $id, $data )
{
...
return true;
}
...
答案 0 :(得分:1)
如果您拨打session.save_handler
,请不要设置session_set_save_handler()
,但使用auto_start
时,默认配置的将启动(内置或由模块提供),而不是您的用户提供一个。关于自动启动:它似乎是一个好主意,但请记住打开一个会话阻止所有其他请求开始一个会话,直到它完成。因此,只有在需要时才能开始最好的会议。