Skip to content

Instantly share code, notes, and snippets.

@benplum
Last active December 15, 2015 08:39
Show Gist options
  • Save benplum/5232997 to your computer and use it in GitHub Desktop.
Save benplum/5232997 to your computer and use it in GitHub Desktop.
Return YouTube thumbnail URL.
/*
default.jpg
mqdefault.jpg
hqdefault.jpg
maxresdefault.jpg
0.jpg - 3.jpg
*/
function youTubeThumbnail($id, $size = "mqdefault") {
return "http://img.youtube.com/vi/" . $id . "/" . $size . ".jpg";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment