这个函数和它的名字一样简单,它返回您当前连接到的数据库的名称,该名称是通过 pg_connect() 调用获得的句柄。
<?php
$pgsql_conn = pg_connect("dbname=mark host=localhost");
if ($pgsql_conn) {
print "Successfully connected to database: " . pg_dbname($pgsql_conn) .
" on " . pg_host($pgsql_conn) . "<br/>\n";
} else {
print pg_last_error($pgsql_conn);
exit;
}
?>
[mark@prodigy][*][~/public_html/php]>>>php pg_dbname.php
Content-type: text/html
X-Powered-By: PHP/4.3.1
Successfully connected to database: mark on localhost<br/>
同样,当您在程序中更改连接到的数据库时,此函数更有用。
致敬,--mark