“Как получить данные из массива JSON в PHP” Ответ

php json_decode

$personJSON = '{"name":"Johny Carson","title":"CTO"}';

$person = json_decode($personJSON);

echo $person->name; // Johny Carson
Grepper

PHP возвращает JSON

header('Content-type: application/json');
echo json_encode($array);
Mobile Star

PHP возвращать данные JSON

header('Content-Type: application/json'); 

$colors = array("red","blue","green");
echo json_encode($colors);
Grepper

Как получить данные JSON в PHP

$data = json_decode(file_get_contents('php://input'), true);
print_r($data);
echo $data;
Perfect Pigeon

Как получить данные из массива JSON в PHP

 $data = json_decode($json);
Modern Mockingbird

PHP получить json массив

$json = '
{
    "type": "donut",
    "name": "Cake",
    "toppings": [
        { "id": "5002", "type": "Glazed" },
        { "id": "5006", "type": "Chocolate with Sprinkles" },
        { "id": "5004", "type": "Maple" }
    ]
}';

$yummy = json_decode($json, true);

echo $yummy['toppings'][2]['type']; //Maple
Tense Thrush

Ответы похожие на “Как получить данные из массива JSON в PHP”

Вопросы похожие на “Как получить данные из массива JSON в PHP”

Больше похожих ответов на “Как получить данные из массива JSON в PHP” по PHP

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

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