Skip to content

Instantly share code, notes, and snippets.

View coincardhacky's full-sized avatar

Đỗ Minh Quân coincardhacky

View GitHub Profile
@petk
petk / youtubeChecker.php
Created June 23, 2015 20:55
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";
}