Files
expose/app/helpers.php
Marcel Pociot b515a55325 wip
2020-04-29 22:05:03 +02:00

23 lines
480 B
PHP

<?php
use GuzzleHttp\Psr7\Response;
use function GuzzleHttp\Psr7\str;
function respond_json($responseData, int $statusCode = 200)
{
return str(new Response(
$statusCode,
['Content-Type' => 'application/json'],
json_encode($responseData, JSON_INVALID_UTF8_IGNORE)
));
}
function respond_html(string $html, int $statusCode = 200)
{
return str(new Response(
$statusCode,
['Content-Type' => 'text/html'],
$html
));
}