|
PHP5中文手册
curl_multi_add_handle(PHP 5) curl_multi_add_handle — Add a normal cURL handle to a cURL multi handle 说明
int curl_multi_add_handle
( resource $mh
, resource $ch
)
Adds the ch handle to the multi handle mh 返回值Returns 0 on success, or one of the CURLM_XXX errors code. 范例
Example#1 curl_multi_add_handle() example This example will create two cURL handles, add them to a multi handle, and then run them in parallel.
<?php |