flush.php 281 B

1234567891011121314151617
  1. <?php
  2. require_once __DIR__.'/_executor.php';
  3. return function () {
  4. if (ini_get("output_buffering") !== "0") {
  5. // Disable output buffering if not already done
  6. while (@ob_end_flush());
  7. }
  8. echo 'He';
  9. flush();
  10. echo 'llo '.($_GET['i'] ?? '');
  11. };