我想了解curl_multi_exec。我在這裏複製了一個手動示例。所以我想知道,它是如何工作的?我猜第一個循環發送了http請求?但是,那麼就接着用功能看似無證標誌一個循環內循環..理解PHP curl_multi_exec
我想下載+ = 70名+的url =平行。
http://www.php.net/manual/en/function.curl-multi-exec.php
<?php
...
$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);
}
}
...
?>