如何使用PHP访问JSON数组中的嵌套值?

时间:2019-08-02 23:03:39

标签: php json

我有一个JSON对象,其结构如下:      {
"title":{
"date":"8/2/2019", "content":"this is the content of the article." }, "title_2":{
"date":"8/3/2019", "content":"this is the content of the article." } }

我想浏览每个对象并访问其中的信息。

我正在使用foreach循环遍历每个对象,但似乎无法访问对象内部的数据。

这是我尝试过的:     $articles = json_decode('some_json', true); foreach($articles as $article){ echo $article['date]; echo $article['content]; }

我正在尝试将其输出:

8/1/2019 这就是文章的内容。

2019年8月2日 这是另一篇文章的内容。

但是相反,对于每个尝试的回显,我都会得到一个未定义的索引错误。

0 个答案:

没有答案