PHP - Función json_decode ()
La función json_decode () puede decodificar una cadena JSON.
Sintaxis
mixed json_decode( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )
La función json_decode () puede tomar una cadena codificada en JSON y convertirla en una variable PHP.
La función json_decode () puede devolver un valor codificado en JSON en el tipo PHP apropiado. Los valores true, false y null se devuelven como TRUE, FALSE y NULL respectivamente. Se devuelve NULL si JSON no se puede decodificar o si los datos codificados son más profundos que el límite de recursividad.
Ejemplo 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";
}
}
?>
Salida
Raja
Hyderabad
Telangana
Jai
Secunderabad
Telangana
Ejemplo 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 . "]";
}
?>
Salida
[name][Raja][Adithya][Jai]