2022-11-09 00:56:00 +01:00
|
|
|
<?php
|
|
|
|
|
|
2023-07-10 18:46:04 +02:00
|
|
|
|
2022-11-09 00:56:00 +01:00
|
|
|
require_once __DIR__.'/_executor.php';
|
|
|
|
|
|
|
|
|
|
return function () {
|
2023-07-10 18:46:04 +02:00
|
|
|
if (ini_get("output_buffering") !== "0") {
|
|
|
|
|
// Disable output buffering if not already done
|
|
|
|
|
while (@ob_end_flush());
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-09 00:56:00 +01:00
|
|
|
echo 'He';
|
|
|
|
|
|
|
|
|
|
flush();
|
|
|
|
|
|
|
|
|
|
echo 'llo '.($_GET['i'] ?? '');
|
|
|
|
|
};
|