blob: 0118807c30d837e320702d9cfa5728f074c80cec (
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();
}
  |