mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-12-24 13:38:11 +08:00
17 lines
280 B
PHP
17 lines
280 B
PHP
<?php
|
|
|
|
require_once __DIR__.'/_executor.php';
|
|
|
|
return function () {
|
|
if (ini_get("output_buffering") !== "0") {
|
|
// Disable output buffering if not already done
|
|
while (@ob_end_flush());
|
|
}
|
|
|
|
echo 'He';
|
|
|
|
flush();
|
|
|
|
echo 'llo '.($_GET['i'] ?? '');
|
|
};
|