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 bd3eefcfff..fc04d85918 100644 --- a/php.ini-development +++ b/php.ini-development @@ -347,6 +347,10 @@ disable_classes = ; http://php.net/realpath-cache-ttl ;realpath_cache_ttl = 120 +; Enables or disables the circular reference collector. +; http://php.net/zend.enable-gc +zend.enable_gc = On + ; If enabled, scripts may be written in encodings that are incompatible with ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such ; encodings. To use this feature, mbstring extension must be enabled. diff --git a/php.ini-production b/php.ini-production index 77caca1021..444a843976 100644 --- a/php.ini-production +++ b/php.ini-production @@ -347,6 +347,10 @@ disable_classes = ; http://php.net/realpath-cache-ttl ;realpath_cache_ttl = 120 +; Enables or disables the circular reference collector. +; http://php.net/zend.enable-gc +zend.enable_gc = On + ; If enabled, scripts may be written in encodings that are incompatible with ; the scanner. CP936, Big5, CP949 and Shift_JIS are the examples of such ; encodings. To use this feature, mbstring extension must be enabled. |