pg_options
pg_options
Get the options associated with the connection
string **pg_options** $connection
will return a string containing
the options specified on the given PostgreSQL
instance.
pg_options``connection
connection
A containing the
options.
string``connection
Voorbeeld: example
<?php
$pgsql_conn = pg_connect("dbname=mark host=localhost");
echo pg_options($pgsql_conn);
?>
pg_connect