This commit is contained in:
nanguaboss
2026-08-03 00:07:01 +08:00
commit 71c6e8d9c1
112 changed files with 7815 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
/**
* 数据库配置文件
* 返回数组,供 api/common/db.php 读取
*/
return [
'host' => '127.0.0.1',
'port' => 3306,
'dbname' => 'mysuperlink',
'username' => 'mysuperlink_root',
'password' => '123456',
'charset' => 'utf8mb4',
];