i ancak sunucu ip adresini kullanan, bir web sitesinden bazı bilgi almak için curl kullanıyorum ama ben istemci ip adresi kullanmak istiyorsanız, bu yüzden her kullanıcı sunucular kendi ip ile isteği değil göndermek, nasıl mümkün olabilir?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "URL");
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_TIMEOUT, 50);
$buffer = curl_exec($ch);
curl_close($ch);