mirror of
https://github.com/bitinflow/expose.git
synced 2026-03-13 21:45:55 +00:00
23 lines
503 B
PHP
23 lines
503 B
PHP
<?php
|
|
|
|
use GuzzleHttp\Psr7\Message;
|
|
use GuzzleHttp\Psr7\Response;
|
|
|
|
function respond_json($responseData, int $statusCode = 200)
|
|
{
|
|
return Message::toString(new Response(
|
|
$statusCode,
|
|
['Content-Type' => 'application/json'],
|
|
json_encode($responseData, JSON_INVALID_UTF8_IGNORE)
|
|
));
|
|
}
|
|
|
|
function respond_html(string $html, int $statusCode = 200)
|
|
{
|
|
return Message::toString(new Response(
|
|
$statusCode,
|
|
['Content-Type' => 'text/html'],
|
|
$html
|
|
));
|
|
}
|