curl_multi_getcontent returns 空字符串
curl_multi_getcontent returns empty string
这个问题与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);
谢谢
这是一个代理问题。这个 cURL 选项解决了这个问题。
curl_setopt($ch, CURLOPT_PROXY, 'proxy url');
在附近网络上一位同事的计算机上,我们收到了代理拒绝而不是空字符串。为什么我的电脑会收到一个空字符串而不是代理消息的原因将永远是个谜。
如果目标重定向,您将收到空响应。尝试:
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
或者,如果您已经完成但设置了 CURLOPT_MAXREDIRS
,则重定向的次数可能会超过您允许的次数。尝试增加它。
这个问题与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);
谢谢
这是一个代理问题。这个 cURL 选项解决了这个问题。
curl_setopt($ch, CURLOPT_PROXY, 'proxy url');
在附近网络上一位同事的计算机上,我们收到了代理拒绝而不是空字符串。为什么我的电脑会收到一个空字符串而不是代理消息的原因将永远是个谜。
如果目标重定向,您将收到空响应。尝试:
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
或者,如果您已经完成但设置了 CURLOPT_MAXREDIRS
,则重定向的次数可能会超过您允许的次数。尝试增加它。