“Josn Header Php” Ответ

Josn Header Php

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

Josn Header Php

//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

Ответы похожие на “Josn Header Php”

Вопросы похожие на “Josn Header Php”

Больше похожих ответов на “Josn Header Php” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования