osawashere adlı üyeden alıntı: mesajı görüntüle
verilen. hata mesajı nedir asıl o önemli
ip degişmemiş olabilir ama "şundan dolayı çalışmadı " demiş olması lazım
hiçbir yanıt vermedi

<?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_USERAGENT, "bots");
        curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP');
        curl_setopt($ch, CURLOPT_PROXY,'zzzz: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());
 
?>