数据库方式Session驱动 CREATE TABLE think_session ( session_id varchar(255) NOT NULL, session_expire int(11) NOT NULL, session_data blob, UNIQUE KEY `session_id` (`session_id`) );
$lifeTime :
Session有效时间
$sessionTable :
session保存的数据库名
$hander :
数据库句柄
open(string $savePath, mixed $sessName)
打开Session
close()
关闭Session
read(string $sessID)
读取Session
write(string $sessID, String $sessData)
写入Session
destroy(string $sessID)
删除Session
gc(string $sessMaxLifeTime)
Session 垃圾回收