《如何使用PHP的Curl实现网页代理proxy功能》要点:
本文介绍了如何使用PHP的Curl实现网页代理proxy功能,希望对您有用。如果有疑问,可以联系我们。
使用curl类库内置的代理功能,实现网页代理的功能:
<?php $requestUrl = 'vephp.com'; $ch = curl_init(); $timeout = 5; curl_setopt($ch, CURLOPT_URL, $requestUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_BASIC); //代理认证模式 curl_setopt($ch, CURLOPT_PROXY, "112.65.219.72"); //代理服务器地址 curl_setopt($ch, CURLOPT_PROXYPORT, 80); //代理服务器端口 //curl_setopt($ch, CURLOPT_PROXYUSERPWD, ":"); //http代理认证帐号,username:password的格式 curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_HTTP); //使用http代理模式 $file_contents = curl_exec($ch); curl_close($ch); echo $file_contents; ?>
刷票和采集时等场景会用到。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/157.html