osawashere adlı üyeden alıntı: mesajı görüntüle
Şurada arkadaş ( kendisini tanımam) bir php kodu yazmış.
http://www.mehmetmutlu.com.tr/php-cu...-proxy-ornegi/
bu örnekteki şu adresi :
http://www.mehmetmutlu.com.tr/ip.php
bunun ile degiştirip deneyebilirsiniz

https://api.ipify.org?format=json

eğer çalışmıyorsa hizmet aldığınız yere sorunu mail atın bence
<?php
    function chs(){
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, "https://api.ipify.org?format=json");
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_POST,true);
        curl_setopt($ch, CURLOPT_TIMEOUT, 10);
 
        //http://hidemyass.com/proxy-list/
        curl_setopt($ch, CURLOPT_PROXYPORT, '8080');
        curl_setopt($ch, CURLOPT_USERAGENT, "bots");
        curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
        curl_setopt($ch, CURLOPT_PROXY,'usernss:843661@194.1.192.226:34322');
        curl_setopt($ch, CURLOPT_PROXYUSERPWD,'');
        
        $output = curl_exec($ch);
        curl_close($ch);
        return $output;
        print_r($output);
    }
    print_r(chs());
 
?>
şu şekilde kullandım ama olmadı yanlışmı var ?