BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

flush.php 176B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. ob_start();
  4. echo '0';
  5. ob_flush();
  6. sleep(20);
  7. echo '20';
  8. ob_flush();
  9. sleep(20);
  10. echo '40';
  11. ob_flush();
  12. sleep(20);
  13. echo '60';
  14. ob_end_flush();