(PHP 5)
curl_multi_remove_handle — Remove a handle resource in the curl batch handle resource
int curl_multi_remove_handle ( resource $mh , resource $ch )
Removes the ch handle from the given batch handle mh. When the ch handle is removed, it can still be legally executed using curl_exec(). While the handle being removed is in use, all transfer tasks in progress will be terminated.
mh
cURL multiple handles returned by curl_multi_init().
ch
The cURL handle returned by curl_init().
Returns a cURL handle on success, FALSE on failure.