Merhaba arkadaşlar curl ile çerez dosyasını kullarak üyelikli bir siteden veri çekmeye çalışıyorum..
https://chrome.google.com/webstore/detail/cookiestxt/njabckikapfpffapmjgojcnbfjonfjfg
bu eklenti kurduktan sonra sitede oturum açtım çerez bilgilerini indirdim.

set_time_limit(0);
function siteConnect($site)
{

$ch = curl_init();
$hc = "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36";
curl_setopt($ch,CURLOPT_COOKIEFILE,"/cookie.txt");
curl_setopt($ch, CURLOPT_REFERER, 'https://xxxx.com');
curl_setopt($ch, CURLOPT_URL, $site);
curl_setopt($ch, CURLOPT_USERAGENT, $hc);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false);
$site = curl_exec($ch);
curl_close($ch);

// Veriyi parçalama işlemi
preg_match_all('@(.*?)@si',$site,$veri1);

print_r($site);

// echo $id = $veri1[1][0];

}
$giris = siteConnect("https://xxx.com/");
?>


Kodumu da bu şekilde yazdım ama veri çekemiyorum nasıl yaparım ?