database.php 923 B

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