“Cabeçalho PHP JSON” Respostas de código

Cabeçalho PHP JSON

header('Content-Type: application/json');
echo json_encode($data);
Amused Addax

Cabeçalho PHP JSON

//I heavily use this, because I don't know, if any headers already was send, so the @ suppress the error message "headers already send in line xxx..."
@header('Content-type: application/json');
die(json_encode(['data' => $data, 'error' => $error]));
Harveyhase68

Respostas semelhantes a “Cabeçalho PHP JSON”

Perguntas semelhantes a “Cabeçalho PHP JSON”

Mais respostas relacionadas para “Cabeçalho PHP JSON” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código