运行以下函数后出现此错误:
function send_buffer(){
ob_end_flush();
ob_flush();
flush();
ob_start();
}
我网站的主体需要几秒钟才能加载,所以我想首先发送标题。但是我收到了以下错误:Notice: ob_flush() [ref.outcontrol]: failed to flush buffer zlib output compression
答案 0 :(得分:5)
您不能使用gzip / zlib压缩以及刷新。
选择一个或另一个。我建议使用gzip而不是刷新。