From: Adam Harvey Date: Fri, 11 Nov 2011 13:13:16 +0000 (+0000) Subject: Note the change in ob_start() chunk size behaviour mentioned in doc bug #60243 X-Git-Tag: php-5.4.0RC2~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9103413981c11314d938cbd05dcb90e9ca4a2a87;p=php Note the change in ob_start() chunk size behaviour mentioned in doc bug #60243 (Add way to specify output buffering chunk size of 1). --- diff --git a/UPGRADING b/UPGRADING index eb871a8037..17f630a0cd 100755 --- a/UPGRADING +++ b/UPGRADING @@ -225,6 +225,8 @@ UPGRADE NOTES - PHP 5.4 - is_a() and is_subclass_of() now have third boolean parameter, which specifies if the first argument can be a string class name. Default if false for is_a and true for is_subclass_of() for BC reasons. +- ob_start() will now treat a chunk size of 1 as meaning 1 byte, rather than + the previous special case behaviour of treating it as 4096 bytes. =================================== 5. Changes made to existing methods