Runtime Configuration
The behaviour of these functions is affected by settings in php.ini.
For further details and definitions of the
INI_* modes, see the
Where a configuration setting may be set.
Here's a short explanation of
the configuration directives.
-
pgsql.allow_persistent
bool
-
Whether to allow persistent Postgres connections.
-
pgsql.max_persistent
int
-
The maximum number of persistent Postgres connections per
process.
-
pgsql.max_links
int
-
The maximum number of Postgres connections per process,
including persistent connections.
-
pgsql.auto_reset_persistent
int
-
Detect broken persistent links with pg_pconnect.
Needs a little overhead.
-
pgsql.ignore_notice
int
-
Whether or not to ignore PostgreSQL backend notices.
-
pgsql.log_notice
int
-
Whether or not to log PostgreSQL backends notice messages. The PHP
directive
pgsql.ignore_notice must be off in order to log notice
messages.