All pastes #2073016 Raw Edit

Someone

public text v1 · immutable
#2073016 ·published 2011-06-01 00:23 UTC
rendered paste body
function 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];
}