PHP buffer why \r\n

前端 未结 3 1712
花落未央
花落未央 2020-12-07 04:30

I have a few conceptual questions (all related, I think) regarding the following script, at the comments. The script works fine.



        
3条回答
  •  执念已碎
    2020-12-07 04:39

     Line to show.";
            echo str_pad('',4096)."\n";    
    
            ob_flush();
            flush();
            sleep(2);
    }
    
    echo "Done.";
    
    ob_end_flush();
    ?>
    

提交回复
热议问题