curl_multi_add_handle Add a normal cURL handle to a cURL multi handle &reftitle.description; intcurl_multi_add_handle resourcemh resourcech Adds the ch handle to the multi handle mh &reftitle.parameters; &curl.mh.description; &curl.ch.description; &reftitle.returnvalues; Returns 0 on success, or one of the CURLM_XXX errors code. &reftitle.examples; <function>curl_multi_add_handle</function> example This example will create two cURL handles, add them to a multi handle, and then run them in parallel. 0); //close all the handles curl_multi_remove_handle($mh, $ch1); curl_multi_remove_handle($mh, $ch2); curl_multi_close($mh); ?> ]]> &reftitle.seealso; curl_multi_remove_handle curl_multi_init curl_init