Is there a simple way to detect in PHP if output_buffering is enabled in php.ini? I\'d like to be able to display a message if it is not enabled.
Within my a
simple
check by
echo ini_get('output_buffering');
or run a file calling phpinfo(); function it will list all veriables containing values check the value for 'output_buffering ' in list.
phpinfo();