Something
public php v1 · immutable<?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];}?>