From research it seems that the best practice to verify if a YT video id exists is through YT APIs. I am new learner to php and constructed a function but it has errors I am not sure if am approaching this the right way or if need to vastly change my code. How can I properly verify a youtube video ID?
Two errors i am getting:
Warning: Wrong parameter count for preg_replace()
Fatal error: Class 'HTTP' not found
Code
function validYoutubeVideo($isValid) {
$isValid = false;
if ($videoID == preg_replace('~https?://(?:[0-9A-Z-]+\.)?(?:youtu\.be/| youtube\.com\S*[^\w\-\s])([\w\-]{11})
(?=[^\w\-]|$)(?![?=&+%\w]*(?:[\'"][^<>]*>| </a>))[?=&+%\w-]*~ix','$1')){
$http = new HTTP("http://gdata.youtube.com/feeds/api/videos/".$serverVideoID, "GET");
$http = $result;
if ( $videoID == $result) {
$isValid = true;
}
}
return $isValid;
}