Skip to content

Instantly share code, notes, and snippets.

@JackuB
Created June 14, 2012 11:25
Show Gist options
  • Save JackuB/2929739 to your computer and use it in GitHub Desktop.
Save JackuB/2929739 to your computer and use it in GitHub Desktop.
get youtube video thumbnail
<?php
$json = json_decode(file_get_contents("http://gdata.youtube.com/feeds/api/videos/tSwWeFWPyUI?v=2&alt=jsonc"));
echo '<img src="' . $json->data->thumbnail->hqDefault . '">';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment