json_decode到数组

我正在尝试将JSON字符串解码为数组,但出现以下错误。

致命错误:不能在第6行的C:\ wamp \ www \ temp \ asklaila.php中将stdClass类型的对象用作数组

这是代码:

<?php

$json_string = 'http://www.domain.com/jsondata.json';

$jsondata = file_get_contents($json_string);

$obj = json_decode($jsondata);

print_r($obj['Result']);

?>

回答:

根据文档,您需要指定是否要使用关联数组而不是中的对象json_decode,这是代码:

json_decode($jsondata, true);

以上是 json_decode到数组 的全部内容, 来源链接: utcz.com/qa/406387.html

回到顶部