如何安装PHP 5.5的PDO驱动程序来访问Mac上的Posgres?

时间:2017-03-14 17:11:21

标签: php macos postgresql pdo

我在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

安装驱动程序还需要其他什么吗?

1 个答案:

答案 0 :(得分:-1)

您必须在php.ini文件中启用pdo驱动程序。