TaoLer/app/install/config/database.php

26 lines
778 B
PHP
Raw Normal View History

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