togethere.cloud/private_html/api/matches/ping-pong/1v1/internal/respond.php

9 lines
244 B
PHP

<?php
function og_respond($payload, $status = 200) {
http_response_code($status);
header('Content-Type: application/json; charset=utf-8');
echo json_encode($payload, JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT);
exit;
}