my-status/src/http.php

14 lines
205 B
PHP
Raw Normal View History

<?php
function respondWithJson($data): void
{
header('Content-Type: application/json');
echo json_encode($data);
}
function respondAndDie(string $message): void
{
echo $message;
die();
}