English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
(PHP 5)
curl_multi_remove_handle — Removes a handle resource from the CURL batch resource
int curl_multi_remove_handle ( resource $mh , resource $ch )
Removes the ch handle from the given batch handle mh. After the ch handle is removed, it is still legally executable with curl_exec(). If the handle being removed is being used, all transmission tasks will be terminated during the process.
mh
The 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.