Modules/cURL/curl cleanup: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
Mack Varial (talk | contribs) No edit summary |
||
Line 29: | Line 29: | ||
==See also== | ==See also== | ||
{{Modules/cURL/functions}} | {{Modules/cURL/functions}} | ||
Revision as of 15:39, 16 July 2011
This function is provided by the external module cURL. You must install this module to use this function. | |
Cleans up the curl handle.
Syntax
curl_cleanup(curl handler)
Required arguments
- curl The curl handler
Returns
Nothing usefull
Example
curl = curl_init("http://mtasa.com/"); if not curl then outputDebugString("Can't connect to http://mtasa.com/ with cURL"); else curl_perform(curl); curl_cleanup(curl); curl_close(curl); end