cookie.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. return [
  15. // cookie 保存时间
  16. 'expire' => 0,
  17. // cookie 保存路径
  18. 'path' => '/',
  19. // cookie 有效域名
  20. 'domain' => '',
  21. // cookie 安全传输
  22. 'secure' => false,
  23. // httponly 访问设置
  24. 'httponly' => true,
  25. // 是否使用 setcookie
  26. 'setcookie' => true,
  27. // samesite 设置,支持 'strict' 'lax'
  28. 'samesite' => '',
  29. ];