flush.php 291 B

1234567891011
  1. <?php
  2. set_time_limit(20);
  3. header('Content-Type: text/plain; charset=utf-8');
  4. echo "CivetWeb Auto Flush Test\n";
  5. for($i = 0; $i <10; $i++) {
  6. echo "Auto flush $i\n";
  7. @ob_flush();@flush();
  8. sleep(1);
  9. }
  10. echo "\nCurrently this test fails, only the first FLUSH is processed by the server.\n";
  11. ?>