config.php
521 字节
<?php
/**
* 配置文件
*/
return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '#hostname#',
// 数据库名
'database' => '#database#',
// 用户名
'username' => '#username#',
// 密码
'password' => '#password#',
// 端口
'hostport' => '#hostport#',
// 数据库编码默认采用utf8
'charset' => '#charset#',
// 数据库表前缀
'prefix' => '#prefix#',
"authcode" => '#authcode#',
//#COOKIE_PREFIX#
];