无法使用 PHP 连接到 Postgresql DB

发布于 2024-10-21 03:26:14 字数 172 浏览 1 评论 0原文

我尝试使用 PHP 脚本连接到 Postgre,但它返回以下错误:

Fatal error: Call to undefined function pg_connect() in C:\wamp\www\contact.php on line 2

我做错了什么?

I am trying to connect to Postgre using a PHP script, but it returns the following error:

Fatal error: Call to undefined function pg_connect() in C:\wamp\www\contact.php on line 2

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

只涨不跌 2024-10-28 03:26:14

你需要在 php.ini 中取消注释这一行:

 extension=php_pgsql.dll

you need to uncomment this line in php.ini:

 extension=php_pgsql.dll
夜访吸血鬼 2024-10-28 03:26:14

确保 PHP 中安装了 postgres 驱动程序。在你的 php 目录中找到它,名为 php_pgsql.dll 如果你有它,检查是否在 php ini: 中找到

;extension=php_pgsql.dll

并取消注释它:

extension=php_pgsql.dll

Be sure to have the postgres driver installed into PHP. Find it in your php directory, is named php_pgsql.dll and if you have it, check if found in the php ini:

;extension=php_pgsql.dll

and uncomment it:

extension=php_pgsql.dll
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文