Json Decode Php,使用ID获取名称

时间:2012-12-02 08:10:29

标签: json string get

我得到了这个json,我不知道怎么知道这个名字,知道ID。

[
    { "id":0, "name":"N/A"  },
    { "id":1, "name":"John" },
    { "id":2, "name":"Doom" }
]

我想:

$json= file_get_contents($json);
$data = json_decode($json,true); 

但我不知道接下来要做什么.. :(

1 个答案:

答案 0 :(得分:0)

只需包含underscore.js并执行类似

的操作
_.each(json, function(datum){ 
   if ( yourid === datum.id ) { //yourcode } 
});