What does exactly the value of output_buffering
ini variable mean in php.ini?
On our older server, it was set to 1
output_buffering = 1
With this setting, I could call
ob_clean();
and it worked like a charm. However, we moved our system to a new server where the output buffering was set to 4096:
output_buffering = 4096
With this, calling ob_clean();
did not have any effect, until I explicitly started the very beginning of my code with ob_start();
(It seems that on the other server with output_buffering=1 it was called implicitly).