我有这个数组,它是在 PHP 中解码 JSON 的结果(数组的名称是 $data):
Array ( [books] => Array ( [0] => Array ( [author] => author name [comment] => this is a great book ) [1] => Array ( [author] => another name [comment] => a comment ) ) )
我正在尝试按如下方式访问此数组:
$data->books[0]->author
例如或 $data->books 来获取一系列书籍,包括作者或评论,但两者都不起作用,我在这里做错了什么?谢谢!