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/internal-api/core/output.php

7 lines
174 B
PHP

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