$gDat_ch){
$ch_playlist_id = $gDat_ch['contentDetails']['relatedPlaylists']['uploads']; //プレイリストのID
}
$get_api_url_pl = "https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId=$ch_playlist_id&maxResults=5&key=$apikey";
$json_ch_pl = file_get_contents($get_api_url_pl);
$getData_pl = json_decode( $json_ch_pl , true);
foreach((array)$getData_pl['items'] as $key_pl => $gDat_pl){
$ch_video_title = $gDat_pl['snippet']['title']; //動画のタイトル
$ch_video_image = $gDat_pl['snippet']['thumbnails']['high']['url']; //Thumbnail
$ch_video_desc = nl2br($gDat_pl['snippet']['description']); //Thumbnail
$ch_video_id = nl2br($gDat_pl['snippet']['resourceId']['videoId']); //Thumbnail
echo ('
');
}
?>