function dosya_indir($feed){
$ch = curl_init();
$timeout = 0;
curl_setopt ($ch, CURLOPT_URL, $feed);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$veri= curl_exec($ch);
curl_close($ch);
return $veri;
}Kullanımı
dosya_indir("http://www.youtube.com/index.php") Şeklinde
Bu kod çok işime yaradı çok teşekkür ederim.
file_get_contents ile veri çekiyordum ama bazen sayfa geciktiği zaman boş değer yazdırıyor.