任何人都可以幫我理解爲什麼這裏有兩個循環?CURL MULTI - 爲什麼兩個循環?
<?php
// create both cURL resources
$ch1 = curl_init();
$ch2 = curl_init();
// set URL and other appropriate options
curl_setopt($ch1, CURLOPT_URL, "http://lxr.php.net/");
curl_setopt($ch1, CURLOPT_HEADER, 0);
curl_setopt($ch2, CURLOPT_URL, "http://www.php.net/");
curl_setopt($ch2, CURLOPT_HEADER, 0);
//create the multiple cURL handle
$mh = curl_multi_init();
//add the two handles
curl_multi_add_handle($mh,$ch1);
curl_multi_add_handle($mh,$ch2);
$active = null;
//execute the handles
do {
$mrc = curl_multi_exec($mh, $active);
} while ($mrc == CURLM_CALL_MULTI_PERFORM);
while ($active && $mrc == CURLM_OK) {
if (curl_multi_select($mh) != -1) {
do {
$mrc = curl_multi_exec($mh, $active);
} while ($mrc == CURLM_CALL_MULTI_PERFORM);
}
}
//close the handles
curl_multi_remove_handle($mh, $ch1);
curl_multi_remove_handle($mh, $ch2);
curl_multi_close($mh);
?>
代碼從http://php.net/manual/en/function.curl-multi-exec.php拍攝 - 第一個例子
的另一個問題是,奇怪的代碼都輸出到屏幕使用curl沒有multi_exec功能時從來沒有發生過。我需要回應以前的內容,但不是爲了這個內容,它甚至沒有詢問就脫口而出。
bcoa有兩種不同的'UR'L和兩種不同的'捲曲object'存在 – diEcho 2012-01-04 09:36:02
不,這不是原因。多接口在相同的循環中「驅動」多個同時的接口。 – 2012-01-04 10:28:46