如何使用PHP从JSON内容访问特定字段?

时间:2010-11-30 18:26:42

标签: php json

我想通过使用php

获取Json中不同字段的值

1 个答案:

答案 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;