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
I think you can go
if(!ob_start()) { }