No, it can be setup in php.
On your local server, the output_buffering function is included in the php.ini file.
You can disable it by setting:
output_buffering = off
To ensure that the content is sent to the browser each time an echo-like operator is used, add:
implicit_flush = on
You can also set the buffer size by providing an output_buffering value.
output_buffering = 4096
here the buffer size will be 4 KB.
Output buffering tells php to store in memory all the data that should be sent to the browser, until it checks the flush () command in your code, the buffer is full, or this is the end of the script.
Here is the full link for the output buffer from php.net: php output buffer
dader source share