“PHP JSON Erhalten Sie einen Wert nach Schlüssel” Code-Antworten

Lesen Sie den Schlüsselwert JSON PHP

// json object.
    $contents = '{"firstName":"John", "lastName":"Doe"}';

    // Option 1: through the use of an array.
    $jsonArray = json_decode($contents,true);

    $key = "firstName";

    $firstName = $jsonArray[$key];


    // Option 2: through the use of an object.
    $jsonObj = json_decode($contents);

    $firstName = $jsonObj->$key;
Ivan The Terrible

PHP JSON Erhalten Sie einen Wert nach Schlüssel

// json object.
    $contents = '{"firstName":"John", "lastName":"Doe"}';

    // Option 1: through the use of an array.
    $jsonArray = json_decode($contents,true);

    $key = "firstName";

    $firstName = $jsonArray[$key];

// Option 2: through the use of an object.
    $jsonObject = json_decode($contents);

    $key = "firstName";

    $firstName = $jsonArray->$key;
Magsverge Solutions

Ähnliche Antworten wie “PHP JSON Erhalten Sie einen Wert nach Schlüssel”

Fragen ähnlich wie “PHP JSON Erhalten Sie einen Wert nach Schlüssel”

Weitere verwandte Antworten zu “PHP JSON Erhalten Sie einen Wert nach Schlüssel” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen