Skip to content

Instantly share code, notes, and snippets.

@herrbischoff
Created April 8, 2015 22:08
Show Gist options
  • Save herrbischoff/681e95c091e9f8f75ce1 to your computer and use it in GitHub Desktop.
Save herrbischoff/681e95c091e9f8f75ce1 to your computer and use it in GitHub Desktop.
Get Vimeo Video Thumbnail
function getVimeoVideoThumbnail($id) {
$hash = unserialize( file_get_contents("http://vimeo.com/api/v2/video/$id.php") );
$thumbnail = $hash[0]['thumbnail_large'];
return $tumbnail;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment