Methods ob_start and ob_flush don't work, why?

前端 未结 7 1060
时光取名叫无心
时光取名叫无心 2020-12-29 11:49

I am using ob_start()/ob_flush() to, hopefully, give me some progress during a long import operation.

Here is a simple outline of what I\'m

7条回答
  •  醉梦人生
    2020-12-29 12:21

    Ob_end_clean() discards the contents of the current output buffer and turns off the buffering. You should use ob_end_flush() instead.

提交回复
热议问题