我有這個數據的JSON:JSON KEY VALUE LOOP PHP
$data = "meta_data":[
{
"id":2279,
"key":"codice_fiscale",
"value":"gege"
},
{
"id":2280,
"key":"numero_tessera_titolare",
"value":"gre"
},
{
"id":2281,
"key":"classe_tessera_titolare",
"value":"gre"
},
{
"id":2282,
"key":"tratta_da",
"value":"gre"
},
{
"id":2283,
"key":"tratta_a",
"value":"grge"
},
{
"id":2284,
"key":"studente",
"value":"studente"
}];
我需要循環所有「鑰匙」,當我發現我所需要的密鑰(在這種情況下,「STUDENTE」)我需要獲取存儲在「值」中的值。
我怎樣才能做到這一點在PHP?
編輯
我嘗試這樣做:
foreach($data as $row){
if($row->key=='studente'){
$var = $row->value;
}
}
[用PHP解析JSON文件(的可能的複製https://stackoverflow.com/questions/4343596/parsing-json -file與 - PHP) – axierjhtjz