php 코드 검사 에이전트 ip 의 유효성
/**
+-----------------------------------------------------------------------------
* ip
+-----------------------------------------------------------------------------
* @param string $proxy_ip [117.95.100.126:8998]
* @param int $times
* @return array
* @author elinx <[email protected]> 2016-07-29
+-----------------------------------------------------------------------------
*/
function check_proxy_ip_info($proxy_ip=false, $times=10) {
$header = array(
// "GET / HTTP/1.1",
// "HOST: www.baidu.com",
"accept: application/json",
"accept-encoding: gzip, deflate",
"accept-language: en-US,en;q=0.8",
"content-type: application/json",
"user-agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36",
);
$url = 'http://www.baidu.com/';
$result['succeed_times'] = 0; //
$result['defeat_times'] = 0; //
$result['total_spen'] = 0; //
for ($i=0; $i < $times; $i++) {
$s = microtime();
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url); // url
curl_setopt($curl, CURLOPT_HTTPHEADER, $header); // http
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_ENCODING, 'gzip,deflate'); //
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); // SSL
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); // SSL
if (@$proxy_ip != false) { // ip
curl_setopt($curl, CURLOPT_HTTPHEADER, array (
'Client_Ip: '.mt_rand(0, 255).'.'.mt_rand(0, 255).'.'.mt_rand(0, 255).'.'.mt_rand(0, 255),
));
curl_setopt($curl, CURLOPT_HTTPHEADER, array (
'X-Forwarded-For: '.mt_rand(0, 255).'.'.mt_rand(0, 255).'.'.mt_rand(0, 255).'.'.mt_rand(0, 255),
));
curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
curl_setopt($curl, CURLOPT_PROXY, $proxy_ip);
}
curl_setopt($curl, CURLOPT_COOKIEFILE, dirname(__FILE__).'/cookie.txt');
curl_setopt($curl, CURLOPT_COOKIEJAR, dirname(__FILE__).'/cookie.txt');
curl_setopt($curl, CURLOPT_TIMEOUT, 30); //
// $response_header = curl_getinfo($curl); // response
$content = curl_exec($curl);
if (strstr($content, ' , ')) {
$result['list'][$i]['status'] = 1;
$result['succeed_times'] += 1;
} else {
$result['list'][$i]['status'] = 0;
$result['defeat_times'] += 1;
}
$e = microtime();
$result['total_spen'] += abs($e-$s);
$result['list'][$i]['spen'] = abs($e-$s);
$result['list'][$i]['content'] = json_encode($content, true);
// $result['list'][$i]['response_header'] = $response_header;
}
$result['precent'] = (number_format($result['succeed_times']/$times, 4)*100).'%';
$result['average_spen'] = number_format($result['total_spen']/$times, 4);
return $result;
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.