Created
April 13, 2017 07:48
-
-
Save moskalukigor/6d651f0da5a1123e619f0b7b376ec377 to your computer and use it in GitHub Desktop.
Get youtube preview image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $vid = $video['video_link']; | |
| $vid_ex = explode("v=",$vid); | |
| $imgurl = 'http://img.youtube.com/vi/'.$vid_ex[1].'/0.jpg'; | |
| $imgurl = (@file_get_contents($imgurl))?$imgurl:'http://img.youtube.com/vi/'.$vid_ex[1].'/maxresdefault.jpg'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment