|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-18 06:41 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 10:00:01 2025 UTC |
The php.ini configuration directive zlib.output_compression is defined as: STD_PHP_INI_BOOLEAN("zlib.output_compression", "0", PHP_INI_ALL, OnUpdate_zlib_output_compression, output_compression, zend_zlib_globals, zlib_globals) However, the OnUpdate_zlib_output_compression function does not enable/disable this functionality. The output compression is only enabled during request initalization, so having INI_ALL access is confusing when you cannot enable or disable within a script. Suggest changing to PHP_INI_SYSTEM to indicate its true nature or better yet a feature request to move the functionality of RINIT to its own routine and have RINIT use it, as well as OnChange_zlib_output_compression after detecting if any output has already been sent.