blob: b5208e64f8d2cdc690fcd8a8ee0baa2f2b3a4050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php declare(strict_types=1);
function respondAndExit(int $responseCode, string $header, array $headers = []): void
{
header($header, false, $responseCode);
foreach ($headers as $header) {
header($header);
}
header('Content-type: text/plain; charset=UTF-8');
exit();
}
|