mirror of
https://github.com/Qbix/webserver.git
synced 2026-07-22 07:57:23 +02:00
6 lines
154 B
PHP
6 lines
154 B
PHP
<?php
|
|
Q::header('X-Custom-Header: hello');
|
|
Q::header('Cache-Control: public, max-age=300');
|
|
Q::header('HTTP/1.1 201 Created', true, 201);
|
|
echo 'created';
|