El comportamiento de estas funciones se ve afectado por la configuración de php.ini.
| Nombre | Por defecto | Cambiable | Historial de cambios | 
|---|---|---|---|
| pgsql.allow_persistent | "1" | PHP_INI_SYSTEM | |
| pgsql.max_persistent | "-1" | PHP_INI_SYSTEM | |
| pgsql.max_links | "-1" | PHP_INI_SYSTEM | |
| pgsql.auto_reset_persistent | "0" | PHP_INI_SYSTEM | Disponible desde PHP 4.2.0. | 
| pgsql.ignore_notice | "0" | PHP_INI_ALL | Disponible desde PHP 4.3.0. | 
| pgsql.log_notice | "0" | PHP_INI_ALL | Disponible desde PHP 4.3.0. | 
He aquí una breve explicación de las directivas de configuración.
pgsql.allow_persistent
     boolean
    Si se permiten conexiones Postgres persistentes.
pgsql.max_persistent
     integer
    El número máximo de conexiones Postgres persistentes por proceso.
pgsql.max_links
     integer
    El número máximo de conexiones Postgres por proceso, incluyendo conexiones persistentes.
pgsql.auto_reset_persistent
     integer
    Detectar conexiones persitentes rotas con pg_pconnect(). Necesita un breve tiempo adicional.
pgsql.ignore_notice
     integer
    Hacer caso o no a los mensajes de avisos del backend PostgreSQL.
pgsql.log_notice
     integer
    Registrar o no los mensajes de aviso del backend PostgreSQL. La directiva PHP pgsql.ignore_notice debe estar apagada para registrar los mensajes de aviso