Latest web development tutorials

PHP curl_multi_remove_handle function

PHP curl_multi_remove_handle function

PHP Calendar Reference Manual PHP cURL Reference Manual

(PHP 5)

curl_multi_remove_handle - removing curl batch handle resources in a resource handle


Explanation

int curl_multi_remove_handle ( resource $mh , resource $ch )

Remove ch handle from the given mh handle in batch. When the ch handle has been removed, you can still use this handle to perform legally curl_exec (). When the handle is being removed is being used during the processing of all transfer tasks will be terminated.


parameter

mh

By the curl_multi_init () returns multiple cURL handles.

ch

By the curl_init () returns a cURL handle.


return value

Returns a cURL handle on success, FALSE on failure.


PHP Calendar Reference Manual PHP cURL Reference Manual