无法使用 PHP 连接到 Postgresql DB
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要在 php.ini 中取消注释这一行:
you need to uncomment this line in php.ini:
确保 PHP 中安装了 postgres 驱动程序。在你的 php 目录中找到它,名为 php_pgsql.dll 如果你有它,检查是否在 php ini: 中找到
并取消注释它:
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:
and uncomment it: