Skip to content

Instantly share code, notes, and snippets.

@sargunv
Last active July 12, 2017 09:35
Show Gist options
  • Save sargunv/a3bbb4e9e9052f179c15 to your computer and use it in GitHub Desktop.
Save sargunv/a3bbb4e9e9052f179c15 to your computer and use it in GitHub Desktop.
Validate a YouTube video ID
<?php function validate_youtube($videoid) { return strpos ( get_headers ( "http://gdata.youtube.com/feeds/api/videos/" . $videoid, 1) [0], '200') !== FALSE; } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment