【发布时间】:2025-12-21 04:55:12
【问题描述】:
我正在尝试连接到数据库,但收到错误消息:
PDOException: could not find driver in E:\Drive\Dev\PHP\connect\index.php:3 Stack trace: #0 E:\Drive\Dev\PHP\connect\index.php(3): PDO->__construct('mysql:host=localhost;...', 'dbuser', 'dbpassword') #1 {main}
我使用 XAMPP 来运行 Apache 和 MySQL。我还配置了 VirtualPorts 并通过它们的别名访问所有网站,例如'mysite/' 而不是 'localhost'
您能否检查下面的代码并帮助我解决问题。提前致谢!
<?php
try{
$pdo = new PDO('mysql:host=localhost;dbname=carbrands', 'dbuser', 'dbpassword');
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$pdo->exec('SET NAMES "utf8"');
}
catch(PDOException $e){
$output = 'not connected';
$e->getMessage();
include 'output.html';
exit();
}
$output = 'connected';
include 'output.html';
?>
【问题讨论】:
-
好像没有安装PDO驱动。