$json = '{"foo": 12345}';
 
$obj = json_decode($json);
 
print $obj->{'foo'}; // 12345

 

相关文章: