summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Kokot <peterkokot@gmail.com>2018-05-26 19:34:38 +0200
committerNikita Popov <nikita.ppv@gmail.com>2018-05-26 22:04:20 +0200
commit974c46b89bdb0b84e36890907d17f7a6ae7d058a (patch)
tree3522ea90f6c15bf62fbe75bedf8734960519e5b7
parentbe11b354f4a25f75c0ac1ecebc8f9caed2a0a301 (diff)
downloadphp-git-974c46b89bdb0b84e36890907d17f7a6ae7d058a.tar.gz
Add missing opcache.opt_debug_level ini directive
-rw-r--r--php.ini-development4
-rw-r--r--php.ini-production4
2 files changed, 8 insertions, 0 deletions
diff --git a/php.ini-development b/php.ini-development
index bad3017695..9e7094c4fb 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -1905,6 +1905,10 @@ ldap.max_links = -1
; Prevent name collisions in chroot'ed environment.
;opcache.validate_root=0
+; If specified, it produces opcode dumps for debugging different stages of
+; optimizations.
+;opcache.opt_debug_level=0
+
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.
diff --git a/php.ini-production b/php.ini-production
index 2232d75a59..dafddedac1 100644
--- a/php.ini-production
+++ b/php.ini-production
@@ -1905,6 +1905,10 @@ ldap.max_links = -1
; Prevent name collisions in chroot'ed environment.
;opcache.validate_root=0
+; If specified, it produces opcode dumps for debugging different stages of
+; optimizations.
+;opcache.opt_debug_level=0
+
[curl]
; A default value for the CURLOPT_CAINFO option. This is required to be an
; absolute path.