Skip to content

Instantly share code, notes, and snippets.

@KorDum
Created June 28, 2017 07:47
Show Gist options
  • Save KorDum/461e7979e3cbf95ac1e2055881836622 to your computer and use it in GitHub Desktop.
Save KorDum/461e7979e3cbf95ac1e2055881836622 to your computer and use it in GitHub Desktop.
if ($category['id'] != $categoryId) {
continue;
}
if (!seasonId) {
$category['videos'][] = $video;
break;
}
foreach ($category['seasons'] as &$season) {
if ($season['id'] == $seasonId) {
$season['videos'][] = $video;
}
}
unset($season);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment