@@ -105,21 +105,23 @@ output_buffering = 4096
105
105
; example, if you set output_handler to "mb_output_handler", character
106
106
; encoding will be transparently converted to the specified encoding.
107
107
; Setting any output handler automatically turns on output buffering.
108
- ; NOTE : People who wrote portable scripts should not depend on this ini
109
- ; directive. Instead, explicitly set the output handler using ob_start().
110
- ; Using this ini directive may cause problems unless you know what script
111
- : is doing.
112
- ; NOTE : You cannot use both "mb_output_handler" with "ob_inconv_handler"
113
- ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
108
+ ; Note : People who wrote portable scripts should not depend on this ini
109
+ ; directive. Instead, explicitly set the output handler using ob_start().
110
+ ; Using this ini directive may cause problems unless you know what script
111
+ : is doing.
112
+ ; Note : You cannot use both "mb_output_handler" with "ob_inconv_handler"
113
+ ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
114
114
;output_handler =
115
115
116
116
; Transparent output compression using the zlib library
117
117
; Valid values for this option are 'off', 'on', or a specific buffer size
118
118
; to be used for compression (default is 4KB)
119
- ;
119
+ ; Note: Resulting chunk size may vary due to nature of compression. PHP
120
+ ; outputs chunks that are few handreds bytes each as a result of compression.
121
+ ; If you want larger chunk size for better performence, enable output_buffering
122
+ ; also.
120
123
; Note: output_handler must be empty if this is set 'On' !!!!
121
124
; Instead you must use zlib.output_handler.
122
- ;
123
125
zlib.output_compression = Off
124
126
125
127
; You cannot specify additional output handlers if zlib.output_compression
0 commit comments