- PHP 正则表达式(PCRE)
- PHP 图像处理
- PHP 5 Array 函数
- PHP 5 Calendar 函数
- PHP cURL 函数
- PHP 5 Date/Time 函数
- PHP 5 Directory 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP FTP 函数
- PHP HTTP 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 5 Math 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP 5 SimpleXML 函数
- PHP lcfirst() 函数
- PHP 5 String 函数
- PHP XML Parser 函数
- PHP Zip File 函数
- PHP 5 时区
PHP curl_multi_remove_handle函数
(PHP 5)
curl_multi_remove_handle — 移除curl批处理句柄资源中的某个句柄资源
说明
int curl_multi_remove_handle ( resource $mh , resource $ch )
从给定的批处理句柄mh中移除ch句柄。当ch句柄被移除以后,仍然可以合法地用curl_exec()执行这个句柄。当正在移除的句柄正在被使用,在处理的过程中所有的传输任务会被终止。
参数
mh
由 curl_multi_init() 返回的 cURL 多个句柄。
ch
由 curl_init() 返回的 cURL 句柄。
返回值
成功时返回一个cURL句柄,失败时返回FALSE。
关注微信小程序
扫描二维码
程序员编程王