我在Mac上运行PHP 5.5.36(OSX 10.10.5)并使用
安装PDO驱动程序brew install homebrew/php/php55-pdo-pgsql
但是,运行该行
$dbh = new PDO("postgres://localhost:5432");
生成错误:
Fatal error: Uncaught exception 'PDOException' with message 'could not find driver' in /Users/zaitsev/tests/pg-php/pdo-test.php:2
Stack trace:
#0 /Users/zaitsev/tests/pg-php/pdo-test.php(2): PDO->__construct('postgres://loca...')
#1 {main}
thrown in /Users/zaitsev/tests/pg-php/pdo-test.php on line 2
安装驱动程序还需要其他什么吗?
答案 0 :(得分:-1)
您必须在php.ini文件中启用pdo驱动程序。