我正在尝试使用json_decode访问JSON字符串中的信息, 但它返回一个字符串而不是一个对象。我的代码
var_dump(json_decode($json)); // print json object to make sure it is working
$obj = json_decode($json); // get json object
print $obj->{'time'}; // 12345 // error because obj is a string
答案 0 :(得分:-3)
尝试下面的一个而不是$ obj = json_decode($ json)
$ obj = json_decode($ json,true);
例如:
$obj = '{"name":"vijay","age":27,"city":"New York"}';
$obj = json_decode($obj,true);
echo $obj["name"]; // vijay