我想通过使用php
获取Json中不同字段的值答案 0 :(得分:2)
json_decode($ string)将返回一个对象,您可以从中获取指定的值。
例如:
$myObject = new MyObject();
$myObject -> att1 = 5;
$string = json_encode($myObject);
//here's how you get the value:
$myJsonDecodedObject = json_decode($string);
$value = $myJsonDecodedObject -> att1;