useful-api.org/renderer/JSON.php
2023-11-24 10:01:17 +01:00

6 lines
No EOL
128 B
PHP

<?php
return function($data) {
header("Content-Type: application/json");
echo json_encode($data, JSON_PRETTY_PRINT);
};