mirror of
https://github.com/dunglas/frankenphp.git
synced 2025-12-24 13:38:11 +08:00
14 lines
245 B
PHP
14 lines
245 B
PHP
<?php
|
|
|
|
require_once __DIR__.'/_executor.php';
|
|
|
|
return function () {
|
|
header('Foo: bar');
|
|
header('Foo2: bar2');
|
|
header('Invalid');
|
|
header('I: ' . ($_GET['i'] ?? 'i not set'));
|
|
http_response_code(201);
|
|
|
|
echo 'Hello';
|
|
};
|