curl_multi_getcontent返回空字符串

时间:2016-12-21 12:42:00

标签: php curl curl-multi

这个问题与PHP curl_multi_gecontent returns null非常相似,但我找不到解决方法。如果我尝试回显应该包含请求响应的函数的结果,我会得到一个空字符串("")。

我的代码当然遗漏了一些错误,但我不能指责它。有人可以帮忙吗?

$id = "stuff";
$password = "mcmuffin";
$data = json_decode(file_get_contents('php://input'), true);
$ch = array();

// build the individual requests, but do not execute them
for($i = 0; $i < sizeof($data); $i++){
    $searchText = $data[$i];
    $type = "ligne3;pdi;voie;commune;cedexa";
    $word = "Contient";
    $option = "AND_OR_RES";
    $format = "json";
    $url = "http://somewebservice/service?chaineRecherche=".urlencode($searchText)."&typeRecherche=".urlencode($type)."&optionMot=".urlencode($word)."&optionRecherche=".urlencode($option)."&typeResultat=".urlencode($format)."&idClient=".urlencode($id)."&passwdClient=".urlencode($mcmuffin);


    $currentCurl = curl_init($url);
    curl_setopt($currentCurl, CURLOPT_HEADER, 0);
    curl_setopt($currentCurl, CURLOPT_RETURNTRANSFER, true);
    array_push($ch, $currentCurl);
}

// build the multi-curl handle, adding all $ch
$mh = curl_multi_init();
for($i = 0; $i < sizeof($ch); $i++){
    curl_multi_add_handle($mh, $ch[$i]);
}

// execute all queries simultaneously, and continue when all are complete
$active = null;
do {
  $mrc = curl_multi_exec($mh, $active);
} while ($mrc == CURLM_CALL_MULTI_PERFORM);


// all of our requests are done, we can now access the results
for($i = 0; $i < sizeof($ch); $i++){
    echo "bonjour"; //does output
    $response = curl_multi_getcontent($ch[$i]); //empty??
    echo json_encode($response);
}

//close the handles
for($i = 0; $i < sizeof($ch); $i++){
    curl_multi_remove_handle($mh, $ch[$i]);
}
curl_multi_close($mh);

由于

2 个答案:

答案 0 :(得分:0)

这是代理问题。此cURL选项可解决此问题。

curl_setopt($ch, CURLOPT_PROXY, 'proxy url');

在附近网络上的同事计算机上,我们收到了代理拒绝而不是空字符串。我的计算机收到空字符串而不是代理消息的原因将永远是个谜。

答案 1 :(得分:0)

如果目标重定向,您将收到一个空响应。试试:

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

或者,如果您已经完成但设置了CURLOPT_MAXREDIRS,则重定向的次数可能会比允许的次数更多。尝试增加它。

请参见manual