mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
22 lines
559 B
Smarty
22 lines
559 B
Smarty
<?php
|
|
/**
|
|
* ApiAdmin数据库连接配置文件【由系统自动生成】
|
|
*/
|
|
return [
|
|
// 数据库类型
|
|
'type' => '[DB_TYPE]',
|
|
// 服务器地址
|
|
'hostname' => '[DB_HOST]',
|
|
// 数据库名
|
|
'database' => '[DB_NAME]',
|
|
// 用户名
|
|
'username' => '[DB_USER]',
|
|
// 密码
|
|
'password' => '[DB_PWD]',
|
|
// 端口
|
|
'hostport' => '[DB_PORT]',
|
|
// 数据库编码默认采用utf8
|
|
'charset' => 'utf8',
|
|
// 数据库表前缀
|
|
'prefix' => '[DB_PREFIX]',
|
|
]; |