You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
500 B
17 lines
500 B
<?php |
|
// +---------------------------------------------------------------------- |
|
// | 会话设置 |
|
// +---------------------------------------------------------------------- |
|
|
|
return [ |
|
// session name |
|
'name' => '', |
|
// SESSION_ID的提交变量,解决flash上传跨域 |
|
'var_session_id' => '', |
|
// 驱动方式 支持file redis memcache memcached |
|
'type' => 'file', |
|
// 过期时间 |
|
'expire' => 7200, |
|
// 前缀 |
|
'prefix' => '', |
|
];
|
|
|