“So erhalten Sie Daten von JSON Array in PHP” Code-Antworten

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

PHP Return JSON -Daten zurück

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

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

So empfangen Sie JSON -Daten in PHP

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

So erhalten Sie Daten von JSON Array in PHP

 $data = json_decode($json);
Modern Mockingbird

PHP bekommen 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

Ähnliche Antworten wie “So erhalten Sie Daten von JSON Array in PHP”

Fragen ähnlich wie “So erhalten Sie Daten von JSON Array in PHP”

Weitere verwandte Antworten zu “So erhalten Sie Daten von JSON Array in PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen