ZombieDragon
ZombieDragon

Reputation: 131

How to connect to the remote server using curl and php through proxy?

How to connect to the remote server usinbg curl and php thru proxy?

Upvotes: 0

Views: 642

Answers (1)

Alex Weinstein
Alex Weinstein

Reputation: 9891

PHP libcurl supports proxy settings:

curl_setopt($process, CURLOPT_PROXY, $this->proxy)

Upvotes: 3

Related Questions