TaoLer/app/install/config/database.php

24 lines
492 B
PHP
Raw Normal View History

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