我正在尝试将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
json_decode($jsondata, true);