mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-14 12:32:50 +00:00
42 lines
1.6 KiB
PHP
42 lines
1.6 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: honor <763569752@qq.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
return [
|
|
'session' => [
|
|
// SESSION 前缀
|
|
'prefix' => 'wap',
|
|
// 驱动方式 支持redis memcache memcached
|
|
'type' => '',
|
|
// 是否自动开启 SESSION
|
|
'auto_start' => true,
|
|
],
|
|
'template' => [
|
|
// 模板引擎类型 支持 php think 支持扩展
|
|
'type' => 'Think',
|
|
// 模板路径
|
|
'view_path' => APP_PATH .'wap/view/first/',
|
|
// 模板后缀
|
|
'view_suffix' => 'html',
|
|
// 模板文件名分隔符
|
|
'view_depr' => DS,
|
|
// 模板引擎普通标签开始标记
|
|
'tpl_begin' => '{',
|
|
// 模板引擎普通标签结束标记
|
|
'tpl_end' => '}',
|
|
// 标签库标签开始标记
|
|
'taglib_begin' => '{',
|
|
// 标签库标签结束标记
|
|
'taglib_end' => '}',
|
|
],
|
|
'exception_handle' =>\basic\WapException::class,
|
|
'empty_controller' =>'AuthController'
|
|
];
|