]> granicus.if.org Git - php/commitdiff
Merge branch 'PHP-7.4'
authorNikita Popov <nikita.ppv@gmail.com>
Tue, 29 Sep 2020 08:48:12 +0000 (10:48 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Tue, 29 Sep 2020 08:48:29 +0000 (10:48 +0200)
* PHP-7.4:
  Synchronize php.ini-development and php.ini-production

1  2 
php.ini-development
php.ini-production

index 54006830a2c06d97078e5c6f11046bf3a83ace3c,ea687bea15d1a1b346b49c1bfdaefab0389f7d55..65532be9e230e8fb86df6ff19c5170b86b8f13e0
@@@ -371,19 -361,12 +371,21 @@@ zend.enable_gc = O
  ;zend.script_encoding =
  
  ; Allows to include or exclude arguments from stack traces generated for exceptions.
 -; In production, it is recommended to turn this setting on to prohibit the output 
++; In production, it is recommended to turn this setting on to prohibit the output
+ ; of sensitive information in stack traces
 -; Default: Off
 +; Default Value: Off
 +; Development Value: Off
 +; Production Value: On
  zend.exception_ignore_args = Off
  
 +; Allows setting the maximum string length in an argument of a stringified stack trace
 +; to a value between 0 and 1000000.
 +; This has no effect when zend.exception_ignore_args is enabled.
 +; Default Value: 15
 +; Development Value: 15
 +; Production Value: 0
 +zend.exception_string_param_max_len = 15
 +
  ;;;;;;;;;;;;;;;;;
  ; Miscellaneous ;
  ;;;;;;;;;;;;;;;;;
index 47a5c5e13b20b8e1da79f6384518aa8f76fbeaf4,8d54423003f3f351e3b9e14ba18e53104f3c1ddc..472a87eab0c5f544101fa61afadfd4109b37cd57
@@@ -368,26 -358,15 +368,26 @@@ zend.enable_gc = O
  ; Allows to set the default encoding for the scripts.  This value will be used
  ; unless "declare(encoding=...)" directive appears at the top of the script.
  ; Only affects if zend.multibyte is set.
 -; Default: ""
  ;zend.script_encoding =
  
- ; Allows to include or exclude arguments from stack traces generated for exceptions
+ ; Allows to include or exclude arguments from stack traces generated for exceptions.
 -; In production, it is recommended to turn this setting on to prohibit the output 
 +; In production, it is recommended to turn this setting on to prohibit the output
  ; of sensitive information in stack traces
 -; Default: Off
 +; Default Value: Off
 +; Development Value: Off
 +; Production Value: On
  zend.exception_ignore_args = On
  
 +; Allows setting the maximum string length in an argument of a stringified stack trace
 +; to a value between 0 and 1000000.
 +; This has no effect when zend.exception_ignore_args is enabled.
 +; Default Value: 15
 +; Development Value: 15
 +; Production Value: 0
 +; In production, it is recommended to set this to 0 to reduce the output
 +; of sensitive information in stack traces.
 +zend.exception_string_param_max_len = 0
 +
  ;;;;;;;;;;;;;;;;;
  ; Miscellaneous ;
  ;;;;;;;;;;;;;;;;;