“php json mendapatkan nilai dengan kunci” Kode Jawaban

Baca nilai kunci 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 mendapatkan nilai dengan kunci

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

Jawaban yang mirip dengan “php json mendapatkan nilai dengan kunci”

Pertanyaan yang mirip dengan “php json mendapatkan nilai dengan kunci”

Lebih banyak jawaban terkait untuk “php json mendapatkan nilai dengan kunci” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya