diff --git a/php.ini-development b/php.ini-development index 98ef90da975..84c0832b492 100644 --- a/php.ini-development +++ b/php.ini-development @@ -1189,6 +1189,11 @@ mysqli.default_pw = ; Allow or prevent reconnect mysqli.reconnect = Off +; If this option is enabled, closing a persistent connection will rollback +; any pending transactions of this connection, before it is put back +; into the persistent connection pool. +;mysqli.rollback_on_cached_plink = Off + [mysqlnd] ; Enable / Disable collection of general statistics by mysqlnd which can be ; used to tune and monitor MySQL operations. diff --git a/php.ini-production b/php.ini-production index f7afc568aff..c9cacaec913 100644 --- a/php.ini-production +++ b/php.ini-production @@ -1191,6 +1191,11 @@ mysqli.default_pw = ; Allow or prevent reconnect mysqli.reconnect = Off +; If this option is enabled, closing a persistent connection will rollback +; any pending transactions of this connection, before it is put back +; into the persistent connection pool. +;mysqli.rollback_on_cached_plink = Off + [mysqlnd] ; Enable / Disable collection of general statistics by mysqlnd which can be ; used to tune and monitor MySQL operations.