<?
function download($file_source) {
    
$rh fopen($file_source'rb');
    
$data '';
    if (
$rh===false) {
        return 
true;
    }
    while (!
feof($rh)) {
        
$data .= fread($rh1024);
    }
    
fclose($rh);
    
// No error
    
return $data;
}
echo 
download("http://www.google.com/calendar/feeds/dhviskhpcppcl4o9eferbnujn4@group.calendar.google.com/public/full");
?>