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.

19 lines
580 B

1 year ago
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 会话设置
  4. // +----------------------------------------------------------------------
  5. return [
  6. // session name
  7. 'name' => 'PHPSESSID',
  8. // SESSION_ID的提交变量,解决flash上传跨域
  9. 'var_session_id' => '',
  10. // 驱动方式 支持file cache
  11. 'type' => 'file',
  12. // 存储连接标识 当type使用cache的时候有效
  13. 'store' => null,
  14. // 过期时间
  15. 'expire' => 1440,
  16. // 前缀
  17. 'prefix' => '',
  18. ];