19 declare(strict_types=1);
65 $this->requestmethod =
$_SERVER[
'REQUEST_METHOD'];
67 $this->contenttype =
'';
70 $this->responsecodes = array(
74 300 =>
'Multiple Choices',
76 401 =>
'Unauthorized',
77 402 =>
'Payment Required',
80 405 =>
'Method Not Allowed',
81 406 =>
'Not Acceptable',
82 415 =>
'Unsupported Media Type',
83 500 =>
'Internal Server Error',
84 501 =>
'Not Implemented' 86 $this->additionalheaders = array();
112 if (($code < 200) || ($code >= 600)) {
115 if (empty($this->reason) && array_key_exists($code, $this->responsecodes)) {
116 $this->reason = $this->responsecodes[
$code];
119 if (empty($this->reason)) {
120 $this->reason = $this->responsecodes[intval($code / 100) * 100];
208 public function send($debug =
true): void
210 header(
"HTTP/1.0 {$this->code} {$this->getReason()}");
211 foreach ($this->additionalheaders as $header) {
215 if ($this->code >= 200 && $this->code < 400) {
221 if ((($this->code >= 200) && ($this->code < 300)) || !empty($this->body)) {
222 if (!empty($this->contenttype)) {
223 header(
"Content-Type: $this->contenttype; charset=utf-8");
225 if (!empty($this->body)) {
228 } elseif ($this->code >= 400) {
229 header(
"Content-Type: application/json; charset=utf-8");
234 $body->request->method =
$_SERVER[
'REQUEST_METHOD'];
235 $body->request->url =
$_SERVER[
'REQUEST_URI'];
236 if (isset(
$_SERVER[
'HTTP_ACCEPT'])) {
237 $body->request->accept =
$_SERVER[
'HTTP_ACCEPT'];
239 if (isset(
$_SERVER[
'CONTENT_TYPE'])) {
240 $body->request->contentType = explode(
';',
$_SERVER[
'CONTENT_TYPE'], 2)[0];
242 echo json_encode($body, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
setBody(string $body)
Set the response body.
array $responsecodes
HTTP response codes.
string $body
HTTP response body.
__construct()
Class constructor.
getAccept()
Get the request accept header.
string $accept
HTTP request accept header.
getReason()
Get the response reason.
getRequestMethod()
Get the request method.
int $code
HTTP response code.
getRequestData()
Get the request body.
string $data
HTTP request body.
getCode()
Get the response code.
array $additionalheaders
HTTP additional headers.
getContentType()
Get the response content type.
setCode(int $code)
Set the response code.
setReason(string $reason)
Set the response reason.
send($debug=true)
Add an additional header.
string $reason
HTTP response reason.
setAccept(string $accept)
Set the request accept header.
setRequestData(string $data)
Set the response body.
string $requestmethod
HTTP request method.
setContentType(string $contenttype)
Set the response content type.
string $contenttype
HTTP response content type.