尝试使用json_decode,但它不断返回对象的字符串instad

时间:2017-08-01 17:36:03

标签: php

我正在尝试使用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

1 个答案:

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