简体   繁体   English

PHP - 如何确定 curl_multi 代理连接是否成功?

[英]PHP - How to make sure if a curl_multi proxy connection was succesful?

I want to use multi-cURL with proxies, but I can't figure out how to check if each proxy connection was succesful.我想对代理使用 multi-cURL,但我不知道如何检查每个代理连接是否成功。 With a the normal single cURL I make a simple loop which runs as long curl_errno isn't 0.使用普通的单个 cURL,我做了一个简单的循环,只要 curl_errno 不为 0,它就会运行。

But how to make with multi-cURL?但是如何使用多卷曲制作呢?

Thanks!谢谢!

You can have a simple proxy checker before you run your query on multi-curl在多卷曲上运行查询之前,您可以拥有一个简单的代理检查器

Simple Proxy Checker简单的代理检查器

function __proxyChecker($proxy)
{
    $ch = curl_init("http://google.com");
    curl_setopt($ch, CURLOPT_TIMEOUT, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 1);
    curl_setopt($ch, CURLOPT_PROXY, $proxy);
    curl_setopt($ch, CURLOPT_NOBODY, true);
    $handle = curl_exec($ch);
    curl_close($ch);
    return $handle ;
}

Usage用法

$proxies = "211.136.10.29:80
88.146.161.215:3128 
211.136.10.29:80 
61.35.0.39:6515 
77.78.197.15:8080
211.161.152.106:80";

$proxies = explode("\n", $proxies);
//shuffle($proxies);
$url = "http://google.com";
$handle = curl_init($url);
curl_setopt($handle, CURLOPT_RETURNTRANSFER, TRUE);

echo "<pre>";
foreach ( $proxies as $proxy ) {
    $proxy = trim($proxy);
    if(empty($proxy))
        continue ;

    if(__proxyChecker($proxy))  
        echo $proxy , " - ok \n";
    else
        echo $proxy , " - bad \n";
}

Output输出

211.136.10.29:80 - ok 
88.146.161.215:3128 - ok 
211.136.10.29:80 - ok 
61.35.0.39:6515 - bad 
77.78.197.15:8080 - bad 
211.161.152.106:80 - ok 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM