“Como obter dados da JSON Array no PHP” Respostas de código

php json_decode

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

$person = json_decode($personJSON);

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

PHP Return json

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

Dados JSON de retorno PHP

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

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

Como receber dados JSON no PHP

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

Como obter dados da JSON Array no PHP

 $data = json_decode($json);
Modern Mockingbird

PHP Get JSON Array

$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

Respostas semelhantes a “Como obter dados da JSON Array no PHP”

Perguntas semelhantes a “Como obter dados da JSON Array no PHP”

Mais respostas relacionadas para “Como obter dados da JSON Array no PHP” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código