From 5fd8409ffdad8c4a6ee577d1d2106a457251d162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Fri, 17 Feb 2017 16:32:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BB=A3=E7=A0=81=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/common.php | 3 ++- application/config.php | 38 +++++--------------------------------- application/database.php | 1 + application/tags.php | 10 ---------- 4 files changed, 8 insertions(+), 44 deletions(-) diff --git a/application/common.php b/application/common.php index a14300058..92e06943d 100644 --- a/application/common.php +++ b/application/common.php @@ -1,4 +1,5 @@ -// +---------------------------------------------------------------------- + return [ // +---------------------------------------------------------------------- // | 应用设置 // +---------------------------------------------------------------------- - // 应用命名空间 'app_namespace' => 'app', // 应用调试模式 @@ -49,11 +40,9 @@ return [ 'class_suffix' => false, // 控制器类后缀 'controller_suffix' => false, - // +---------------------------------------------------------------------- // | 模块设置 // +---------------------------------------------------------------------- - // 默认模块名 'default_module' => 'index', // 禁止访问模块 @@ -70,11 +59,9 @@ return [ 'action_suffix' => '', // 自动搜索控制器 'controller_auto_search' => false, - // +---------------------------------------------------------------------- // | URL设置 // +---------------------------------------------------------------------- - // PATHINFO变量名 用于兼容模式 'var_pathinfo' => 's', // 兼容PATH_INFO获取 @@ -113,11 +100,9 @@ return [ 'request_cache' => false, // 请求缓存有效期 'request_cache_expire' => null, - // +---------------------------------------------------------------------- // | 模板设置 // +---------------------------------------------------------------------- - 'template' => [ // 模板引擎类型 支持 php think 支持扩展 'type' => 'Think', @@ -136,42 +121,35 @@ return [ // 标签库标签结束标记 'taglib_end' => '}', ], - // 视图输出字符串内容替换 'view_replace_str' => [], // 默认跳转页面对应的模板文件 'dispatch_success_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl', 'dispatch_error_tmpl' => THINK_PATH . 'tpl' . DS . 'dispatch_jump.tpl', - // +---------------------------------------------------------------------- // | 异常及错误设置 // +---------------------------------------------------------------------- - // 异常页面的模板文件 'exception_tmpl' => THINK_PATH . 'tpl' . DS . 'think_exception.tpl', - // 错误显示信息,非调试模式有效 'error_message' => '页面错误!请稍后再试~', // 显示错误信息 'show_error_msg' => false, // 异常处理handle类 留空使用 \think\exception\Handle 'exception_handle' => '', - // +---------------------------------------------------------------------- // | 日志设置 // +---------------------------------------------------------------------- - 'log' => [ // 日志记录方式,内置 file socket 支持扩展 - 'type' => 'File', + 'type' => 'File', // 日志保存目录 - 'path' => LOG_PATH, + 'path' => LOG_PATH, // 日志记录级别 - 'level' => [], - // error和sql日志单独记录 + 'level' => [], + // error和sql日志单独记录 'apart_level' => ['error', 'sql'], ], - // +---------------------------------------------------------------------- // | Trace设置 开启 app_trace 后 有效 // +---------------------------------------------------------------------- @@ -179,11 +157,9 @@ return [ // 内置Html Console 支持扩展 'type' => 'Html', ], - // +---------------------------------------------------------------------- // | 缓存设置 // +---------------------------------------------------------------------- - 'cache' => [ // 驱动方式 'type' => 'File', @@ -194,11 +170,9 @@ return [ // 缓存有效期 0表示永久缓存 'expire' => 0, ], - // +---------------------------------------------------------------------- // | 会话设置 // +---------------------------------------------------------------------- - 'session' => [ 'id' => '', // SESSION_ID的提交变量,解决flash上传跨域 @@ -210,7 +184,6 @@ return [ // 是否自动开启 SESSION 'auto_start' => true, ], - // +---------------------------------------------------------------------- // | Cookie设置 // +---------------------------------------------------------------------- @@ -230,7 +203,6 @@ return [ // 是否使用 setcookie 'setcookie' => true, ], - //分页配置 'paginate' => [ 'type' => 'bootstrap', diff --git a/application/database.php b/application/database.php index a6bc1c614..e5f86c8f0 100644 --- a/application/database.php +++ b/application/database.php @@ -1,4 +1,5 @@ -// +---------------------------------------------------------------------- -// 应用行为扩展定义文件 return [ // 应用初始化 'app_init' => [],