123456789101112131415161718192021 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-present http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Released under the MIT License.
- // +----------------------------------------------------------------------
- // | Author: Dean <zxxjjforever@163.com>
- // +----------------------------------------------------------------------
- // 请不要随意修改此文件内容
- return [
- // 时间字段取出后的默认时间格式
- 'datetime_format' => false,
- // 数据集返回类型
- 'resultset_type' => 'collection',
- // 数据库调试模式
- 'debug' => APP_DEBUG,
- // 是否需要进行SQL性能分析
- 'sql_explain' => APP_DEBUG,
- ];
|