PHP - How Detect if Output Buffering is Enabled

后端 未结 4 1133
轮回少年
轮回少年 2020-12-11 04:20

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

4条回答
  •  臣服心动
    2020-12-11 04:40

    You can check any INI setting in PHP with the ini_get method. http://php.net/ini_get

    ini_get('output_buffering');
    

    Likewise, you can change most INI settings with ini_set:

    ini_set('output_buffering', 'on');
    

提交回复
热议问题