I am trying to write a program in PHP that I already wrote in Java. I used the following instructions to configure a proxy server in Java
System.setProperty("http.proxyHost",proxyhost);
System.setProperty("http.proxyPort",proxyport);
How do I do the same for PHP?
Bruce source
share