PHP利用curl使用PROXY 達到隱身(改變ip)目的文章收藏( Using curl to Query Remote Servers)

PHP利用curl使用PROXY 達到隱身(改變ip)目的文章收藏( Using curl to Query Remote Servers)

PHP利用curl使用PROXY 達到隱身(改變ip)目的文章收藏( Using curl to Query Remote Servers)

資料來源:http://www.higherpass.com/php/tutorials/Using-Curl-To-Query-Remote-Servers/3/

 

Curl and proxies

As with all other full featured browsers curl has support for proxies. Proxy servers are buffers between the requesting client and the web server. Proxy servers are used for a variety of reasons including companies restricting web access to people wanting to appear anonymous.

There are a few curl options to set when using a proxy. First to enable use of a proxy in curl use the option CURLOPT_HTTPPROXYTUNNEL. Second set the proxy with the option CURLOPT_PROXY. If you need to set authentication information use the option CURLOPT_PROXYUSERPWD. CURLOPT_PROXYUSERPWD expects a string in the format of user:password. HTTP proxies are default, to use a SOCKS proxy use the CURLOPT_PROXYTYPE option.

Example:
<?
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, ‘http://www.example.com’);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);
curl_setopt($ch, CURLOPT_PROXY, ‘fakeproxy.com:1080’);
curl_setopt($ch, CURLOPT_PROXYUSERPWD, ‘user:password’);
$data = curl_exec();
curl_close($ch);
?>

 


 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *