curl_multi_add_handle
curl_multi_add_handle
(PHP 5, PHP 7)
curl_multi_add_handle - 将一个正常的cURL句柄添加到一个cURL多句柄
描述
int curl_multi_add_handle ( resource $mh , resource $ch )
将ch
句柄添加到多个句柄mh
参数
mh
由curl_multi_init()返回的cURL多重句柄。
ch
由curl_init()返回的cURL句柄。
返回值
成功时返回0,或者其中一个CURLM_XXX
错误代码。
例子
Example #1 curl
_
multi
_
add
_
handle() example
这个例子将创建两个cURL句柄,将它们添加到一个多句柄,并异步处理它们。
<?php
// create both cURL resources
$ch1 = curl_init(
$ch2 = curl_init(
// set URL and other appropriate options
curl_setopt($ch1, CURLOPT_URL, "http://www.example.com/"
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
$running=null;
//execute the handles
do {
curl_multi_exec($mh,$running
} while($running > 0
//close all the handles
curl_multi_remove_handle($mh, $ch1
curl_multi_remove_handle($mh, $ch2
curl_multi_close($mh
?>
← curl_init
curl_multi_close →