curl_multi_close
Close a set of cURL handles
&reftitle.description;
voidcurl_multi_close
resourcemh
Closes a set of cURL handles.
&reftitle.parameters;
&curl.mh.description;
&reftitle.returnvalues;
&return.void;
&reftitle.examples;
curl_multi_close example
This example will create two cURL handles, add them to a multi
handle, and process them asynchronously.
0);
//close the handles
curl_multi_remove_handle($mh, $ch1);
curl_close($ch1);
curl_multi_remove_handle($mh, $ch2);
curl_close($ch2);
curl_multi_close($mh);
?>
]]>
&reftitle.seealso;
curl_multi_init
curl_close