Apparently this function does not return the database name given in the connection string. I tried this on apache 2.x/php4.3.x/pg7.4.x and apache 1.3.x/php5.x/pg8rc1 and saw this behavior on both setups.
(PHP 4, PHP 5, PHP 7, PHP 8)
pg_options — Obtener las opciones asociadas con la conexión
pg_options() Devolverá una cadena que contiene
las opciones especificadas en el recurso de
connection
de PostgreSQL.
connection
Recurso de conexión a la base de datos PostgreSQL. Cuando
connection
no esta presente, Se utiliza la conexión predeterminada. La conexión predeterminada
es la última conexión hecha por
pg_connect() o pg_pconnect().
Ejemplo #1 Ejemplo de pg_options()
<?php
$pgsql_conn = pg_connect("dbname=mark host=localhost");
echo pg_options($pgsql_conn);
?>
Apparently this function does not return the database name given in the connection string. I tried this on apache 2.x/php4.3.x/pg7.4.x and apache 1.3.x/php5.x/pg8rc1 and saw this behavior on both setups.