Search Results
Add a normal cURL handle to a cURL multi handle
- Description
- Return Value
- See Also
Adds the easy handle to the multi_handle. While an easy handle is added to a multi stack, you cannot and you must not use curl_easy_performon that handle. After having removed the easy handle from the multi stack again, it is perfectly fine to use it with the easy interface again. If the easy handle is not set to use a shared (CURLOPT_SHARE) cache,...
This function returns a CURLMcode indicating success or error. CURLM_OK (0) means everything was OK, non-zero means an error occurred, see libcurl-errors.
curl_multi_cleanup(3), curl_multi_get_handles(3), curl_multi_init(3), curl_multi_setopt(3), curl_multi_socket_action(3) This HTML page was made with roffit.
The easy handle remains added to the multi handle until you remove it again with curl_multi_remove_handle (3) - even when a transfer with that specific easy handle is completed.
The easy handle remains added to the multi handle until you remove it again with curl_multi_remove_handle - even when a transfer with that specific easy handle is completed.
The easy handle remains added to the multi handle until you remove it again with curl_multi_remove_handle (3) - even when a transfer with that specific easy handle is completed.
curl_multi_add_handle Function • Params and return types changed in PHP 8.0 Add a normal cURL handle to a cURL multi handle.
People also ask
What happens if I add an easy interface to a multi handle?
What does curl_easy_perform do?
What does curl_multi_add_handle do?
What does Curlm_XXX Return?
Apr 11, 2025 · PHP curl_multi_add_handle function tutorial shows how to execute multiple cURL requests in PHP. Learn curl_multi_add_handle with practical examples.
