Skip to content

Instantly share code, notes, and snippets.

@petk
Created June 23, 2015 20:55
Show Gist options
  • Save petk/813270d801bad54d3cc4 to your computer and use it in GitHub Desktop.
Save petk/813270d801bad54d3cc4 to your computer and use it in GitHub Desktop.
Check if youtube video exists
<?php
$headers = get_headers('http://www.youtube.com/oembed?url=http://www.youtube.com/watch?v=nonexistingid');
if (!strpos($headers[0], '200')) {
echo "The YouTube video you entered does not exist";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment