database.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. use think\facade\Env;
  3. return [
  4. // 默认使用的数据库连接配置
  5. 'default' => 'mysql',
  6. // 自定义时间查询规则
  7. 'time_query_rule' => [],
  8. // 自动写入时间戳字段
  9. // true为自动识别类型 false关闭
  10. // 字符串则明确指定时间字段类型 支持 int timestamp datetime date
  11. 'auto_timestamp' => true,
  12. // 时间字段取出后的默认时间格式
  13. 'datetime_format' => 'Y-m-d H:i:s',
  14. // 数据库连接配置信息
  15. 'connections' => [
  16. 'mysql' => [
  17. // 数据库类型
  18. 'type' => 'mysql',
  19. // // 服务器地址
  20. // 'hostname' => '110.41.5.26',
  21. // // 数据库名
  22. // 'database' => 'yuesheng',
  23. // // 用户名
  24. // 'username' => 'yuesheng',
  25. // 密码
  26. // 'password' => '4jeTHik7BdWwCsAh',
  27. // 端口
  28. 'hostname' => '120.79.86.50',
  29. // 数据库名
  30. 'database' => 'yuesheng',
  31. // 用户名
  32. 'username' => 'yuesheng',
  33. // 密码
  34. 'password' => 'dB4iTnwCrYh5kcYZ',
  35. 'hostport' => '3306',
  36. // 数据库连接参数
  37. 'params' => [],
  38. // 数据库编码默认采用utf8
  39. 'charset' => 'utf8',
  40. // 数据库表前缀
  41. 'prefix' => 'v4',
  42. // 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
  43. 'deploy' => 0,
  44. // 数据库读写是否分离 主从式有效
  45. 'rw_separate' => false,
  46. // 读写分离后 主服务器数量
  47. 'master_num' => 1,
  48. // 指定从服务器序号
  49. 'slave_no' => '',
  50. // 是否严格检查字段是否存在
  51. 'fields_strict' => false,
  52. // 是否需要断线重连
  53. 'break_reconnect' => false,
  54. // 监听SQL
  55. 'trigger_sql' => true,
  56. // 开启字段缓存
  57. 'fields_cache' => true,
  58. // 字段缓存路径
  59. 'schema_cache_path' => app()->getRuntimePath() . 'schema' . DIRECTORY_SEPARATOR,
  60. ],
  61. // 更多的数据库配置信息
  62. ],
  63. ];