Heim  >  Artikel  >  php教程  >  PHP Curl ruft Daten über einen Proxy ab

PHP Curl ruft Daten über einen Proxy ab

大家讲道理
大家讲道理Original
2016-11-08 14:30:451192Durchsuche

$curl=curl_init();
            curl_setopt($curl, CURLOPT_URL, "http://www.baidu.com/");
            curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:20.0) Gecko/20100101 Firefox/20.0');
            curl_setopt($curl, CURLOPT_REFERER, 'http://www.guahao.com/');
            curl_setopt($curl, CURLOPT_POST, true);
            curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($param));
            curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($curl, CURLOPT_HTTPPROXYTUNNEL, true);
            curl_setopt($curl, CURLOPT_PROXYAUTH, CURLAUTH_BASIC);
            curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
            curl_setopt($curl, CURLOPT_PROXY, "180.186.11.121");
            curl_setopt($curl, CURLOPT_PROXYPORT, "37211");
            curl_setopt($curl, CURLOPT_PROXYUSERPWD, "taras:taras-ss5");
             
            $result=curl_exec($curl);

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn