0
我有捲曲隨機IP腳本,但我不知道如何使用端口相同的隨機腳本如何提隨機的IP捲曲腳本IP端口
function curl_get($kix)
{
$ips = array(
'85.10.230.132',
'88.198.242.9',
'88.198.242.10',
'88.198.242.11',
'88.198.242.12',
'88.198.242.13',
'88.198.242.14',
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $kix);
@curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_INTERFACE, $ips[rand(0, count($ips)-1)]);
curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
$html = curl_exec($ch);
curl_close($ch);
return $html;
}
您可以在這裏看到我剛纔提到的IP但我不知道如何提及這些IP的端口。
在此先感謝!
它是一個固定端口還是一個隨機端口? – funilrys
@azarudeen對於每個「IP」,你有不同的端口? –
是的,對於每個IP我有不同的端口 – azarudeen