diff --git a/reference/outcontrol/constants.xml b/reference/outcontrol/constants.xml index 3c45d0275f..4693d4fa55 100644 --- a/reference/outcontrol/constants.xml +++ b/reference/outcontrol/constants.xml @@ -185,8 +185,8 @@ Indicates that the output handler is disabled. This flag is set when the output handler returns &false; - or fails while processing the buffer, - or it was set prior to calling the output handler. + or fails while processing the buffer. + Prior to PHP 8.4.0, this flag could be set when starting an output buffer. diff --git a/reference/outcontrol/user-level-output-buffers.xml b/reference/outcontrol/user-level-output-buffers.xml index 8fd9228b0f..913e2928b0 100644 --- a/reference/outcontrol/user-level-output-buffers.xml +++ b/reference/outcontrol/user-level-output-buffers.xml @@ -392,9 +392,11 @@ If the PHP_OUTPUT_HANDLER_DISABLED of a handler is set, the handler will not be invoked by calling ob_end_clean, ob_end_flush, - ob_get_clean, ob_get_flush + ob_get_clean, ob_get_flush, + ob_clean, + ob_flush or during PHP's shutdown process. - This flag has no effect on when calling ob_clean + Prior to PHP 8.4.0, this flag had no effect when calling ob_clean or ob_flush. @@ -599,9 +601,11 @@ If the PHP_OUTPUT_HANDLER_DISABLED of a handler is set, the handler will not be invoked by calling ob_end_clean, ob_end_flush, - ob_get_clean, ob_get_flush + ob_get_clean, ob_get_flush, + ob_clean, + ob_flush or during PHP's shutdown process. - This flag has no effect on when calling ob_clean + Prior to PHP 8.4.0, this flag had no effect when calling ob_clean or ob_flush.