mirror of
https://github.com/php/frankenphp.git
synced 2026-03-24 17:12:10 +01: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';
|
|
};
|