aboutsummaryrefslogtreecommitdiffhomepage
path: root/misc/json_response.php
blob: 4244b649423db056a757a9e3a8c5de2a223c70d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

function json_response(
    mixed $value,
    string $contentType = 'application/json',
    int $flags = 0,
    int $depth = 512
) {
    header("Content-Type: $contentType");
    echo json_encode($value, $flags, $depth);
}