Home  >  Article  >  Backend Development  >  php curl gets data through proxy

php curl gets data through proxy

WBOY
WBOYOriginal
2016-07-25 08:42:14851browse
  1. $curl=curl_init();
  2. curl_setopt($curl, CURLOPT_URL, "http://www.baidu.com/");
  3. curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:20.0) Gecko/20100101 Firefox/20.0');
  4. curl_setopt($curl, CURLOPT_REFERER, 'http://www.guahao.com/');
  5. curl_setopt($curl, CURLOPT_POST, true);
  6. curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($param));
  7. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  8. curl_setopt($curl, CURLOPT_HTTPPROXYTUNNEL, true);
  9. curl_setopt($curl, CURLOPT_PROXYAUTH, CURLAUTH_BASIC);
  10. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  11. curl_setopt($curl, CURLOPT_PROXY, "180.186.11.121");
  12. curl_setopt($curl, CURLOPT_PROXYPORT, "37211");
  13. curl_setopt($curl, CURLOPT_PROXYUSERPWD, "taras:taras-ss5");
  14. $result=curl_exec($curl);
复制代码

php, curl


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn