1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-04-03 02:01:34 +02:00
Lexiconga/backend/Response.php

8 lines
No EOL
189 B
PHP

<?php
class Response {
public static function out ($data, $http_code) {
header('Content-Type: application/json');
http_response_code($http_code);
echo json_encode($data);
}
}