3 Using curl to Query Remote Servers - PHP Tutorials

Using curl to Query Remote Servers

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($chCURLOPT_URL'http://www.example.com');
curl_setopt($chCURLOPT_HEADER1);
curl_setopt($chCURLOPT_RETURNTRANSFER1);
curl_setopt($chCURLOPT_HTTPPROXYTUNNEL1);
curl_setopt($chCURLOPT_PROXY'fakeproxy.com:1080');
curl_setopt($chCURLOPT_PROXYUSERPWD'user:password');
$data curl_exec();
curl_close($ch);
 
?>
Curl and form data <<  1 2 3 4 5  >> Using SSL and proxies in curl
New Content