这篇文章主要介绍php连接postgresql的方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

PHP中可以使用pg_connect函数连接postgresql数据库。

pg_connect()打开一个由connection_string所指定的 PostgreSQL 数据库的连接。如果成功则返回连接资源,如果不能连接则返回FALSE。connection_string应该是用引号引起来的字符串。

语法:

pg_connect(string$connection_string):resource

pg_connect()返回其它 PostgreSQL 函数所需要的资源。

pg_connect()打开一个由connection_string所指定的 PostgreSQL 数据库的连接。如果成功则返回连接资源,如果不能连接则返回FALSE。connection_string应该是用引号引起来的字符串。

示例:

<?php$dbconn=pg_connect("dbname=mary");//connecttoadatabasenamed"mary"$dbconn2=pg_connect("host=localhostport=5432dbname=mary");//connecttoadatabasenamed"mary"on"localhost"atport"5432"$dbconn3=pg_connect("host=sheepport=5432dbname=maryuser=lambpassword=foo");//connecttoadatabasenamed"mary"onthehost"sheep"withausernameandpassword$conn_string="host=sheepport=5432dbname=testuser=lambpassword=bar";$dbconn4=pg_connect($conn_string);//connecttoadatabasenamed"test"onthehost"sheep"withausernameandpassword?>

以上是php连接postgresql的方法的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!