You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/Core/output.php

7 lines
167 B
PHP

<?php
function output($data, $status_code = 200) {
http_response_code($status_code);
header('Content-Type: application/json');
print json_encode($data);
}