0

I am trying to write a program in PHP which I had already written in Java. I had used the following statements to setup proxy in Java

System.setProperty("http.proxyHost",proxyhost);
System.setProperty("http.proxyPort",proxyport);

How do I do the same for PHP?

Riduidel
  • 22,052
  • 14
  • 85
  • 185
Bruce
  • 33,927
  • 76
  • 174
  • 262

1 Answers1

3

I think you may need to use the cURL extension to carry out the transfer and pass the relevant proxy options to cURL.

cURL Extension

curl_setopt function to pass options to a cURL session

The proxy options you need are: CURL_PROXY and CURL_PROXYPORT.

Andy Shellam
  • 15,403
  • 1
  • 27
  • 41