flush.php 293 B

123456789101112
  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. @flush();
  8. @ob_flush();
  9. sleep(1);
  10. }
  11. echo "\nCurrently this test fails, only the first FLUSH is processed by the server.\n";
  12. ?>