English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Basic PHP Tutorial

Advanced PHP Tutorial

PHP & MySQL

PHP Reference Manual

Usage and examples of PHP curl_multi_remove_handle() function

PHP CURL Reference Manual

(PHP 5)

curl_multi_remove_handle — Removes a handle resource from the CURL batch resource

Syntax

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.

Parameter

mh

The CURL multiple handles returned by curl_multi_init().

ch

The CURL handle returned by curl_init().

Return Value

Returns a CURL handle on success, FALSE on failure.

PHP CURL Reference Manual