cookie.php 1.3 KB

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