PHP 8.5.0 Alpha 1 available for testing

pg_options

(PHP 4, PHP 5, PHP 7, PHP 8)

pg_options Devuelve las opciones de PostgreSQL

Descripción

pg_options(?PgSql\Connection $connection = null): string

pg_options() devuelve un string que contiene las opciones de la conexión PostgreSQL connection.

Parámetros

connection

An PgSql\Connection instance. When connection is null, the default connection is used. The default connection is the last connection made by pg_connect() or pg_pconnect().

Advertencia

As of PHP 8.1.0, using the default connection is deprecated.

Valores devueltos

Un string que contiene las opciones de connection.

Historial de cambios

Versión Descripción
8.1.0 The connection parameter expects an PgSql\Connection instance now; previously, a recurso was expected.
8.0.0 connection ahora es nullable.

Ejemplos

Ejemplo #1 Ejemplo con pg_options()

<?php
$pgsql_conn
= pg_connect("dbname=mark host=localhost");
echo
pg_options($pgsql_conn);
?>

Ver también

add a note

User Contributed Notes 1 note

up
-2
Robert Treat <xzilla at sourceforge>
20 years ago
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.
To Top