PHP Flush/ob_flush not working

前端 未结 7 2305
情深已故
情深已故 2020-11-27 07:03

I\'ve tried several attempts at getting my flush and ob_flush to work. I\'ve tried setting the ini to allow buffering, I\'ve tried using several different functions I found

7条回答
  •  心在旅途
    2020-11-27 07:08

    this works now (at least on php 5.5)

    ob_end_flush();
    while(stuff){
      ..stuff...
      echo('yo');
      flush();
    }
    

    no need to sleep or anything else

提交回复
热议问题