Cannot use output buffering in output buffering display handlers

前端 未结 3 1465
长发绾君心
长发绾君心 2021-01-17 17:24

I\'ve reinstalled Apache, and switched from PHP 5.3 to 5.6. Everything works, except I get this error, when calling ob_start():

Cannot use outpu         


        
3条回答
  •  渐次进展
    2021-01-17 18:02

    Probably you are using a buffering function in output buffering callback which isn't possible as mentioned in php ob_start output_callback documentation. If not it should be the output-handler you used, check your php.ini and try to set it's value to "none" if possible.

提交回复
热议问题