From d879f09f1782e4d2bc7ad7efd284d2cabbf1a693 Mon Sep 17 00:00:00 2001 From: DuckAfire <155199080+duckafire@users.noreply.github.com> Date: Sat, 2 May 2026 13:45:10 -0300 Subject: [PATCH] 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 --- php.ini-development | 2 ++ php.ini-production | 2 ++ 2 files changed, 4 insertions(+) diff --git a/php.ini-development b/php.ini-development index ee75459ea56c..e226fb97e43a 100644 --- a/php.ini-development +++ b/php.ini-development @@ -285,6 +285,8 @@ zlib.output_compression = Off ; implications and is generally recommended for debugging purposes only. ; https://php.net/implicit-flush ; Note: This directive is hardcoded to On for the CLI SAPI +; Note: Printing empty strings or sending headers is not considered output and +; will not result in a flush operation. implicit_flush = Off ; The unserialize callback function will be called (with the undefined class' diff --git a/php.ini-production b/php.ini-production index b10e2ba9944a..0541eef5fde7 100644 --- a/php.ini-production +++ b/php.ini-production @@ -285,6 +285,8 @@ zlib.output_compression = Off ; implications and is generally recommended for debugging purposes only. ; https://php.net/implicit-flush ; Note: This directive is hardcoded to On for the CLI SAPI +; Note: Printing empty strings or sending headers is not considered output and +; will not result in a flush operation.t implicit_flush = Off ; The unserialize callback function will be called (with the undefined class'