Skip to content

Commit d879f09

Browse files
committed
php.ini-*: Add note to implicit_flush rule
From official PHP documentation (02 May 2026): https://www.php.net/manual/en/function.ob-implicit-flush.php
1 parent c130d42 commit d879f09

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

php.ini-development

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,8 @@ zlib.output_compression = Off
285285
; implications and is generally recommended for debugging purposes only.
286286
; https://php.net/implicit-flush
287287
; Note: This directive is hardcoded to On for the CLI SAPI
288+
; Note: Printing empty strings or sending headers is not considered output and
289+
; will not result in a flush operation.
288290
implicit_flush = Off
289291

290292
; The unserialize callback function will be called (with the undefined class'

php.ini-production

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,8 @@ zlib.output_compression = Off
285285
; implications and is generally recommended for debugging purposes only.
286286
; https://php.net/implicit-flush
287287
; Note: This directive is hardcoded to On for the CLI SAPI
288+
; Note: Printing empty strings or sending headers is not considered output and
289+
; will not result in a flush operation.t
288290
implicit_flush = Off
289291

290292
; The unserialize callback function will be called (with the undefined class'

0 commit comments

Comments
 (0)