“PHP JSON obtiene valor por clave” Código de respuesta

Leer el valor clave 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 obtiene valor por clave

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

Respuestas similares a “PHP JSON obtiene valor por clave”

Preguntas similares a “PHP JSON obtiene valor por clave”

Más respuestas relacionadas con “PHP JSON obtiene valor por clave” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código