diff options
author | Marcus Boerger <helly@php.net> | 2002-08-09 22:29:58 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-08-09 22:29:58 +0000 |
commit | 9c8ba935d6cce59d515087b5ce222f22619726f7 (patch) | |
tree | 3735e25221dd3866b0026a3761b4d2ca3af2dfff /php.ini-dist | |
parent | 2e29e53e00d39aa6f5ea1ff4102f792f6ba7ae60 (diff) | |
download | php-git-9c8ba935d6cce59d515087b5ce222f22619726f7.tar.gz |
Improved handling of output buffers (see news)\n#No trim for the string parameter...
Diffstat (limited to 'php.ini-dist')
-rw-r--r-- | php.ini-dist | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/php.ini-dist b/php.ini-dist index b7f603d1cf..1ae8034c0c 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -98,16 +98,22 @@ output_buffering = Off : is doing. ; NOTE: You cannot use both "mb_output_handler" with "ob_inconv_handler" ; and you cannot use both "ob_gzhandler" and "zlib.output_compression". -output_handler = +;output_handler = ; Transparent output compression using the zlib library ; Valid values for this option are 'off', 'on', or a specific buffer size ; to be used for compression (default is 4KB) ; ; Note: output_handler must be empty if this is set 'On' !!!! +; Instead you must use zlib.output_handler. ; zlib.output_compression = Off +; You cannot specify additional output handlers if zlib.output_compression +; is activated here. This setting does the same as output_handler but in +; a different order. +;zlib.output_handler = + ; Implicit flush tells PHP to tell the output layer to flush itself ; automatically after every output block. This is equivalent to calling the ; PHP function flush() after each and every call to print() or echo() and each |