AUNSAL
Facebook Api Developer
Kullanıcı
-
Üyelik
06.01.2012
-
Yaş/Cinsiyet
- / E
-
Meslek
-
Konum
-
Ad Soyad
** **
-
Mesajlar
44
-
Beğeniler
1 / 12
-
Ticaret
0, (%0)
Fonksiyonu aşağıdaki gibi düzenledim. Umarım işinize yarar.
function resimcek($resim,$cek){
if(file_exists($resim)) {
echo $resim.' var';
} else {
$dosya = @fopen($resim,'w');
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $cek);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_FILE, $dosya);
curl_exec($curl);
curl_close($curl);
}
}
resimcek('resim.gif','http://www.yoksa-cekilecek-olan-site.com/resim.gif');
?>