Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrabro/31470f1e750499c55ca03526b9d93f18 to your computer and use it in GitHub Desktop.
Save mrabro/31470f1e750499c55ca03526b9d93f18 to your computer and use it in GitHub Desktop.
Get youtube Channel ID by channel url
<?php
function get_youtube_channel_ID($url){
$html = file_get_contents($url);
preg_match("'<meta itemprop=\"channelId\" content=\"(.*?)\"'si", $html, $match);
if($match && $match[1]);
return $match[1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment