All pastes #2072933 Raw Edit

Something

public php v1 · immutable
#2072933 ·published 2011-05-31 20:11 UTC
rendered paste body
<?phpfunction get_channel_comments ($username) {$url = file_get_contents("http://youtube.com/".$username."/");$newlines = array("\t","\n","\r","\x20\x20","\0","\x0B");$content = str_replace($newlines, "", html_entity_decode($url));preg_match('/<span name="channel-box-item-count">(.*?)<\/span>/s',$content, $matches);return (int) $matches[0];}?>