config.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. return [
  12. 'resources'=>'/static/master',
  13. 'cookie' => [
  14. // cookie 名称前缀
  15. 'prefix' => 'master_',
  16. // cookie 保存时间
  17. 'expire' => 30 * 86400,
  18. // cookie 保存路径
  19. 'path' => '/',
  20. // cookie 有效域名
  21. 'domain' => '',
  22. // cookie 启用安全传输
  23. 'secure' => false,
  24. // httponly设置
  25. 'httponly' => '',
  26. // 是否使用 setcookie
  27. 'setcookie' => true,
  28. ]
  29. ];