View Single Post
  #3  
Old 10-24-2012, 05:48 PM
Mitch Mitch is offline
New Member
 
Join Date: Oct 2012
Posts: 4
Hi there.

Sorry to bump a 4 year old thread but I couldn't find a more relevant thread and I'm having the same issues.

No matter what variations of code I use I'm not able to flush the output buffer

ie.

PHP Code:
ini_set('output_buffering'0); 
ini_set('implicit_flush'1);
ob_end_flush();

for(
$i=0$i<10$i++){
    echo 
$i;
    
sleep(1);
    
ob_flush();
    
flush();

Has anyone else been able to successfully flush(); ?
Reply With Quote