TaoLer/app/install/config/database.php

26 lines
772 B
PHP
Raw Normal View History

2020-01-01 13:17:19 +08:00
<?php
return [
// 数据库连接配置信息
'connections' => [
2020-01-01 15:03:00 +08:00
'mysql' => [
2020-01-01 13:17:19 +08:00
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '127.0.0.1',
// 数据库名
2020-01-11 17:27:15 +08:00
'database' => '',
2020-01-01 13:17:19 +08:00
// 用户名
2020-01-11 17:27:15 +08:00
'username' => '',
2020-01-01 13:17:19 +08:00
// 密码
2020-01-11 17:27:15 +08:00
'password' => '',
2020-01-01 13:17:19 +08:00
// 端口
'hostport' => '3306',
// 数据库连接参数
'params' => [],
// 数据库编码默认采用utf8
'charset' => 'utf8',
// 数据库表前缀
'prefix' => 'tao_',
],
],
];