refactor(数据库配置): 重构数据库配置引入方式

使用根目录的配置文件统一管理数据库连接配置
添加配置加载失败的错误处理
保持变量名兼容性
This commit is contained in:
2025-11-19 12:25:08 +08:00
parent 57377ea4b8
commit 76ba21f57a
+15 -5
View File
@@ -11,11 +11,21 @@ if (!$id) {
exit; exit;
} }
// 数据库连接配置 // 引入根目录的数据库配置文件
$host = 'localhost'; require_once __DIR__ . '/config.php';
$dbname = 'carwash_booking';
$username = 'root'; // 确保配置变量存在
$password = ''; if (!isset($host) || !isset($username) || !isset($password) || !isset($database)) {
http_response_code(500);
echo json_encode([
'error' => '配置文件加载失败',
'message' => '无法读取数据库配置信息'
], JSON_UNESCAPED_UNICODE);
exit;
}
// 配置变量重命名,确保兼容性
$dbname = $database;
try { try {
$pdo = new PDO("mysql:host=$host;dbname=$dbname;charset=utf8mb4", $username, $password); $pdo = new PDO("mysql:host=$host;dbname=$dbname;charset=utf8mb4", $username, $password);