1234567891011121314151617181920212223242526272829 |
- <?php
- return [
- 'type' => 'mysql',
- 'hostname' => 'localhost',
- 'database' => 'root',
- 'username' => 'root',
- 'password' => 'root',
- 'hostport' => '',
- 'dsn' => '',
- 'params' => [],
- 'charset' => 'utf8',
- 'prefix' => 'muyu_',
- 'debug' => false,
- 'deploy' => 0,
- 'rw_separate' => false,
- 'master_num' => 1,
- 'slave_no' => '',
- 'read_master' => false,
- 'fields_strict' => true,
- 'resultset_type' => 'collection',
- 'auto_timestamp' => false,
- 'datetime_format' => 'Y-m-d H:i:s',
- 'sql_explain' => false,
- 'builder' => '',
- 'query' => '\\think\\db\\Query',
- 'break_reconnect' => false,
- 'break_match_str' => [],
- ];
|