We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d9becd2 + 4ec843f commit 678dabaCopy full SHA for 678daba
components/http_foundation/introduction.rst
@@ -387,6 +387,18 @@ represented by a PHP callable instead of a string::
387
});
388
$response->send();
389
390
+.. note::
391
+
392
+ The ``flush()`` function does not flush bufferring. So if
393
+ ``ob_start()`` has been called before or php.ini option
394
+ ``output_buffering`` is not disabled (which is on some
395
+ installations by default), you have to call ``ob_flush()`` before
396
+ ``flush()``.
397
398
+ But not only php can buffer output. Your web-server can also do
399
+ it. Even more, if you use fastcgi, buffering can't be disabled at
400
+ all.
401
402
Downloading Files
403
~~~~~~~~~~~~~~~~~
404
0 commit comments