Someone
public text v1 · immutablefunction get_channel_views($username) {
$url = file_get_contents("http://www.youtube.com/".$username."/");
$newlines = array("\t","\n","\r","\x20\x20","\0","\x0B");
$content = str_replace($newlines, "", html_entity_decode($url));
preg_match('/<div id="profile_show_total_video_views" class="profile-info-value">(.*?)<\/div>/s', $content, $matches);
return $matches[0];
}