“JSON LECTURA EN PHP CON 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

JSON LECTURA EN PHP CON CLAVE

Jsonscript runtime environment(End-to-endpoint)
JSON REST API
Poised Puffin

Respuestas similares a “JSON LECTURA EN PHP CON CLAVE”

Preguntas similares a “JSON LECTURA EN PHP CON CLAVE”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código