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'