PHP - função json_decode ()
A função json_decode () pode decodificar uma string JSON.
Sintaxe
mixed json_decode( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )
A função json_decode () pode pegar uma string codificada em JSON e converter em uma variável PHP.
A função json_decode () pode retornar um valor codificado em JSON no tipo PHP apropriado. Os valores true, false e null são retornados como TRUE, FALSE e NULL respectivamente. O NULL é retornado se JSON não puder ser decodificado ou se os dados codificados forem mais profundos que o limite de recursão.
Exemplo 1
<?php
$jsonData= '[
{"name":"Raja", "city":"Hyderabad", "state":"Telangana"},
{"name":"Adithya", "city":"Pune", "state":"Maharastra"},
{"name":"Jai", "city":"Secunderabad", "state":"Telangana"}
]';
$people= json_decode($jsonData, true);
$count= count($people);
// Access any person who lives in Telangana
for ($i=0; $i < $count; $i++) {
if($people[$i]["state"] == "Telangana") {
echo $people[$i]["name"] . "\n";
echo $people[$i]["city"] . "\n";
echo $people[$i]["state"] . "\n\n";
}
}
?>
Resultado
Raja
Hyderabad
Telangana
Jai
Secunderabad
Telangana
Exemplo 2
<?php
// Assign a JSON object to a variable
$someJSON = '{"name" : "Raja", "Adithya" : "Jai"}';
// Convert the JSON to an associative array
$someArray = json_decode($someJSON, true);
// Read the elements of the associative array
foreach($someArray as $key => $value) {
echo "[" . $key . "][" . $value . "]";
}
?>
Resultado
[name][Raja][Adithya][Jai]