flush.php 423 B

12345678910111213141516
  1. <?php
  2. // Server test options:
  3. // ./civetweb -document_root test -cgi_interpreter /usr/bin/php-cgi -allow_sendfile_call no -num_threads 2 -cgi_buffering no &
  4. set_time_limit(20);
  5. header('Content-Type: text/plain; charset=utf-8');
  6. echo "CivetWeb Flush Test:\nPrint one line every second.\n\n";
  7. for($i = 1; $i <= 10; $i++) {
  8. @printf("Line: %2d / 10\n", $i);
  9. @flush();
  10. @ob_flush();
  11. sleep(1);
  12. }
  13. echo "\nEnd of test.\n";
  14. ?>