function _indir($adres,$yolu,$name=null)
{
$linkbilgisi = pathinfo($adres);
$uzanti = strtolower($linkbilgisi['extension']);
$dosya = ($name) ? $name.'.'.$uzanti : $linkbilgisi['basename'];
$ch = curl_init($adres);
$dosyaac = fopen($yolu.$dosya,'w');
curl_setopt($ch, CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HTTP_VERSION,CURL_HTTP_VERSION_1_0);
curl_setopt($ch, CURLOPT_FILE, $dosyaac);
curl_exec($ch);
curl_close($ch);
fclose($dosyaac);
}

indir($resim,'thumb/',$seo);