shopxo/config/session.php
2021-07-18 23:42:10 +08:00

42 lines
1.6 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( https://opensource.org/licenses/mit-license.php )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 会话设置
// +----------------------------------------------------------------------
if(MyFileConfig('common_session_is_use_cache', '', 0, true) == 1)
{
// redis配置
// 请确保缓存配置文件cache.php中的stores中已经添加了redis缓存配置
$config = [
'type' => 'cache',
'store' => 'redis',
'prefix' => MyFileConfig('common_cache_session_redis_prefix', '', 'shopxo', true),
];
} else {
// 默认配置
$config = [
// session name
'name' => 'PHPSESSID',
// SESSION_ID的提交变量,解决flash上传跨域
'var_session_id' => '',
// 驱动方式 支持file cache
'type' => 'file',
// 存储连接标识 当type使用cache的时候有效
'store' => null,
// 过期时间
'expire' => 3600,
// 前缀
'prefix' => 'shopxo',
];
}
return $config;
?>