Display output in parts in PHP

前端 未结 6 841
春和景丽
春和景丽 2020-11-29 11:59

I have this code:

\";          
    usleep(100000); 
}

?>

I would like to

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-29 12:15

    Flush the output buffer manually:

    ";
        ob_flush();
        usleep(100000); 
    }
    ?>
    

提交回复
热议问题