我正在从JSON文件中提取数据,除了一个项目之外没有任何问题,因为它是JSON数组中的一个数组。
以下是JSON数组的示例:
{
"items": [
{
"id": "12345",
"snippet": {
"publishedAt": "2015-07-25T02:43:39.000Z",
"channelTitle": "BuzzFeedVideo",
"tags": [
"celebrity",
"celebrities",
"seven",
"seven years",
"years",
"different",
"now",
"then",
"ariana grande",
"justin bieber",
"calvin harris",
"miley cyrus",
"abigail breslin",
"daniel radcliffe",
"neville longbottom",
"matthew lewis",
"buzzfeed",
"buzzfeedvideo",
"buzzfeedyellow",
"video"
],
"defaultAudioLanguage": "en"
},
"statistics": {
"viewCount": "700146",
"likeCount": "16847",
"dislikeCount": "596",
"favoriteCount": "0",
"commentCount": "1563"
}
}
]
}
我可以获取id,snippet:publishedAt,但是当涉及到标签时,只使用我的foreach循环提取标签数组"video"
中的最后一项。
这是我的foreach循环:
$tags = $videosResponse['items'][0]['snippet']['tags'];
foreach($tags as $tag):
$keywords = $tag;
echo $keywords;
endforeach;
如何获取JSON标记数组中从"celebrity"
开始到"video"
的所有项目?
更新
我要做的是使用file_put_contents使用JSON数据更新php数组文件。
这是我正在使用的结构。
$tags = $videosResponse['items'][0]['snippet']['tags'];
foreach($tags as $tag):
$keywords = strtolower(replace_utf8_chars($tag));
$new_array_line = " '" . $id . "' => array\n\t(\n\t'datetime' => '" . $publishedAt . "',\n\t'title' => '" . addslashes($title) . "',\n\t'description' => '" . addslashes($description) . "',\n\t'channel title' => '" . addslashes($channelTitle) . "',\n\t'tags' => '" . $keywords . "',\n\t'duration' => '" . $duration . "',\n\t'viewCount' => '" . $viewCount . "',\n\t'likeCount' => '" . $likeCount . "',\n\t'commentCount' => '" . $commentCount . "',\n\t'url' => '" . $url . "'\n\t),";
endforeach;
然后数组pop和文件放置内容代码就在$new_array_line
变量之下。
if(!array_key_exists($id, $videoids)) {
$id_content = file($videoids_file); // Parse file into an array by newline
$id_data = array_pop($id_content);
if (trim($id_data) == ');?>') {
$id_content[] = "\n" . ' // ' . $_SERVER['REMOTE_ADDR'] . ' | ' . date('M j, y h:i:s A') . "\n"; // Echo debug line
$id_content[] = $new_array_line;
$id_content[] = "\n".$id_data;
file_put_contents($videoids_file, implode($id_content));
}
return array('title' => $title, 'description' => $description, 'channelTitle' => $channelTitle);
}
如果我在最后一部分之后结束foreach,则输出tags数组中的第一项,但如果我在if语句之前结束foreach,则只输出tags数组中的最后一项。
在if语句执行之前,我是否需要某种时间延迟?
答案 0 :(得分:2)
$new_array_line =
需要替换为$new_array_line .=
,否则foreach循环将在评估下一个标记值时继续覆盖它,直到保留与' 视频相关的最后一个标记值为止'标签
答案 1 :(得分:-1)
从未听过endforeach ......
当JSON有效时,您应该能够使用以下命令访问该数组:
$videosResponse['items'][0]['tags'];