天天看點

php實時重新整理

set_time_limit(0);
    ob_start();
    ob_end_flush();
    ob_implicit_flush(1);
    for($i = 0;$i < 1000;$i++){
        echo $i."<br/>";
    }
    echo str_repeat(" ",4096);