Php/docs/pgsql.configuration

来自菜鸟教程
跳转至:导航、​搜索

运行时配置

这些函数的行为受 php.ini 中的设置影响。

PostgreSQL 配置选项
名字 默认 可修改范围 更新日志
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 从 PHP 4.2.0 起开始存在
pgsql.ignore_notice "0" PHP_INI_ALL 从 PHP 4.3.0 起开始存在
pgsql.log_notice "0" PHP_INI_ALL 从 PHP 4.3.0 起开始存在

有关 PHP_INI_* 样式的更多详情与定义,见 配置可被设定范围。 这是配置指令的简短说明。

pgsql.allow_persistent boolean
是否允许持久的 Postgres 连接。
pgsql.max_persistent integer
每个进程所能有的持久 Postgres 连接数目。
pgsql.max_links integer
每个进程所能有的 Postgres 连接数目,包括持久连接。
pgsql.auto_reset_persistent integer
检测用在 pg_pconnect() 上的中断了的持久连接。需要一些损耗。
pgsql.ignore_notice integer
是否忽略 PostgreSQL 后端的通告。
pgsql.log_notice integer
是否记录 PostgreSQL 后端的通告消息。要记录通告消息日志,PHP 指令 pgsql.ignore_notice 必须为 off。