You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
3 years ago
|
<?php
|
||
|
return [
|
||
|
// 数据库类型
|
||
|
'type' => 'mysql',
|
||
|
// 服务器地址
|
||
|
'hostname' => '127.0.0.1',
|
||
|
// 数据库名
|
||
2 years ago
|
'database' => 'test_com',
|
||
3 years ago
|
// 用户名
|
||
2 years ago
|
'username' => 'test_com',
|
||
3 years ago
|
// 密码
|
||
2 years ago
|
'password' => 'YNKdaMS2XBHKcAh7',
|
||
3 years ago
|
// 端口
|
||
|
'hostport' => '3306',
|
||
|
// 连接dsn
|
||
|
'dsn' => '',
|
||
|
// 数据库连接参数
|
||
|
'params' => [],
|
||
|
// 数据库编码默认采用utf8
|
||
|
'charset' => 'utf8',
|
||
|
// 数据库表前缀
|
||
2 years ago
|
'prefix' => '5kcrm_',
|
||
3 years ago
|
// 数据库调试模式
|
||
|
'debug' => true,
|
||
|
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
|
||
|
'deploy' => 0,
|
||
|
// 数据库读写是否分离 主从式有效
|
||
|
'rw_separate' => false,
|
||
|
// 读写分离后 主服务器数量
|
||
|
'master_num' => 1,
|
||
|
// 指定从服务器序号
|
||
|
'slave_no' => '',
|
||
|
// 自动读取主库数据
|
||
|
'read_master' => false,
|
||
|
// 是否严格检查字段是否存在
|
||
|
'fields_strict' => true,
|
||
|
// 数据集返回类型
|
||
|
'resultset_type' => 'array',
|
||
|
];
|