gpt4 book ai didi

php - 更新到 macOS Big Sur 后,我无法使用 MAMP 连接到我的 PostgreSQL 数据库

转载 作者:行者123 更新时间:2023-12-04 15:12:08 24 4
gpt4 key购买 nike

代码

这是抛出错误的代码。

try {
$myPDO = new PDO('pgsql:host=127.0.0.1:5432;dbname=test', 'test', '');
} catch (\Throwable $th) {
echo var_dump($th);
}

错误

这是我从 try/catch 返回的响应。

object(PDOException)#2 (8) {
["message":protected]=>
string(21) "could not find driver"
["string":"Exception":private]=>
string(0) ""
["code":protected]=>
int(0)
["file":protected]=>
string(58) "/Users/test/index.php"
["line":protected]=>
int(8)
["trace":"Exception":private]=>
array(1) {
[0]=>
array(6) {
["file"]=>
string(58) "/Users/test/index.php"
["line"]=>
int(8)
["function"]=>
string(11) "__construct"
["class"]=>
string(3) "PDO"
["type"]=>
string(2) "->"
["args"]=>
array(3) {
[0]=>
string(46) "pgsql:host=127.0.0.1:5432;dbname=test"
[1]=>
string(13) "test"
[2]=>
string(0) ""
}
}
}
["previous":"Exception":private]=>
NULL
["errorInfo"]=>
NULL
}

版本

我正在使用的软件版本列表。

操作系统:macOS Big Sur

MAMP:6.2

PHP:7.3.21


更新 - 更多上下文

php.ini 文件中,以下行未被注释。根据 PHP 信息,这是正确的 php.ini 文件。

extension_dir = "/Applications/MAMP/bin/php/php7.4.9/lib/php/extensions/no-debug-non-zts-20190902/"
...
extension=pgsql.so
extension=pdo_pgsql.so

最佳答案

Big Sur 上的默认 PHP 安装不包括所需的 PostgreSQL 驱动程序。我通过 Homebrew 安装了 PHP 7.4确实包括这个驱动程序:

brew install php@7.4

确保将其设置为默认的 PHP 版本。我正在使用 Oh My Zsh所以我需要运行这个:

echo 'export PATH="/usr/local/opt/php@7.4/bin:$PATH"' >> ~/.zshrc
echo 'export PATH="/usr/local/opt/php@7.4/sbin:$PATH"' >> ~/.zshrc

你可以在这里找到 php.ini(如果你需要迁移配置):/usr/local/etc/php/7.4/php.ini

关于php - 更新到 macOS Big Sur 后,我无法使用 MAMP 连接到我的 PostgreSQL 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65029691/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com