mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-12-24 13:38:11 +08:00
* delete source/downloads after building in script, not in dockerfile * add editorconfig * eol * cs fix * added \n there * we expect Hello\n * Change tab width for shell scripts to 4 spaces * bring back embed comment
17 lines
275 B
PHP
17 lines
275 B
PHP
<?php
|
|
|
|
ignore_user_abort(true);
|
|
|
|
require_once __DIR__.'/_executor.php';
|
|
|
|
return function () {
|
|
if($_GET['finish'] ?? false) {
|
|
frankenphp_finish_request();
|
|
}
|
|
|
|
echo 'hi';
|
|
flush();
|
|
$status = (string) connection_status();
|
|
error_log("request {$_GET['i']}: " . $status);
|
|
};
|