Bot işlerinden anlamam ama bi göz atin.
function siteAdresi($site)
{
$ch = curl_init();
$hc = "YahooSeeker-Testing/v3.9 (compatible; Mozilla 4.0; MSIE 5.5; Yahoo! Search - Web Search)";
curl_setopt($ch, CURLOPT_REFERER, 'http://www.google.com');
curl_setopt($ch, CURLOPT_URL, $site);
curl_setopt($ch, CURLOPT_USERAGENT, $hc);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$site = curl_exec($ch);
curl_close($ch);
preg_match_all('@<span class="prc-slg">(.*?)</span>@si',$site,$veri_derece1);
print_r($veri_derece1[1][0]);
}
$veri = siteAdresi('https://www.trendyol.com/ozcan-aydinlatma/sorti-aplik-2111-02-p-152840?boutiqueId=317656&merchantId=104837');