diff options
-rw-r--r-- | php.ini-development | 4 | ||||
-rw-r--r-- | php.ini-production | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development index e81f288a46..6b96d6b599 100644 --- a/php.ini-development +++ b/php.ini-development @@ -976,6 +976,10 @@ cli_server.color = On ; http://php.net/pcre.recursion-limit ;pcre.recursion_limit=100000 +;Enables or disables JIT compilation of patterns. This requires the PCRE +;library to be compiled with JIT support. +;pcre.jit=1 + [Pdo] ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" ; http://php.net/pdo-odbc.connection-pooling diff --git a/php.ini-production b/php.ini-production index f4bdf7bf7f..2c23acb47d 100644 --- a/php.ini-production +++ b/php.ini-production @@ -976,6 +976,10 @@ cli_server.color = On ; http://php.net/pcre.recursion-limit ;pcre.recursion_limit=100000 +;Enables or disables JIT compilation of patterns. This requires the PCRE +;library to be compiled with JIT support. +;pcre.jit=1 + [Pdo] ; Whether to pool ODBC connections. Can be one of "strict", "relaxed" or "off" ; http://php.net/pdo-odbc.connection-pooling |