ApcuHandler
实现 HandlerInterfaceAPCu 会话存储处理程序
自 |
2.0.0 |
---|---|
包 |
Joomla 框架 |
方法
__construct
构造函数
__construct(mixed||string|int options = []) :
自 |
2.0.0 |
---|
参数
- options
array<string|int, mixed>
用于配置处理程序的选项关联数组
响应
mixed
close
关闭会话
close() :
自 |
2.0.0 |
---|
响应
bool
成功时为真,否则为假
destroy
销毁会话
destroy( id) :
自 |
2.0.0 |
---|
参数
- id
string
响应
bool
成功时为真,否则为假
gc
清理旧会话
gc( maxlifetime) :
自 |
2.0.0 |
---|
参数
- maxlifetime
int
最后 maxlifetime 秒内未更新的会话将被删除
响应
bool
成功时为真,否则为假
isSupported
测试 HandlerInterface 是否可用
isSupported() :
static
自 |
2.0.0 |
---|
响应
bool
成功时为真,否则为假
open
初始化会话
open( save_path, session_id) :
自 |
2.0.0 |
---|
参数
- save_path
string
存储/检索会话的路径- session_id
string
会话 ID
响应
bool
成功时为真,否则为假
read
读取会话数据
read( session_id) :
自 |
2.0.0 |
---|
参数
- session_id
string
要读取数据的会话 ID
响应
string
会话数据
write
写入会话数据
write( session_id, session_data) :
自 |
2.0.0 |
---|
参数
- session_id
string
会话 ID- session_data
string
编码后的会话数据
响应
bool
成功时为真,否则为假
属性
prefix
会话 ID 前缀,用于避免命名冲突
自 |
2.0.0 |
---|
类型
string