Modules/cURL/curl setopt: Difference between revisions
Jump to navigation
Jump to search
Mack Varial (talk | contribs) No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
curlcode | curlcode curlSetopt(curl handler, curloption option, bool/number/string value) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 18: | Line 18: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
curl = | curl = curlInit("http://mtasa.com/"); | ||
if not curl then | if not curl then | ||
outputDebugString("Can't connect to http://mtasa.com/ with cURL"); | outputDebugString("Can't connect to http://mtasa.com/ with cURL"); | ||
else | else | ||
curlSetopt(curl, CURLOPT_POST, true); | |||
curlClose(curl); | |||
end | end | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 11:08, 22 June 2014
This function is provided by the external module cURL. You must install this module to use this function. | |
Set an curl option.
Syntax
curlcode curlSetopt(curl handler, curloption option, bool/number/string value)
Required arguments
- handler The curl handler.
- option An curl option, al the options are found here
- value The value, this can be a string, number or boolean. At the curl option list you can find wich option needs a string, number or boolean.
Returns
Returns a curlcode. Nevermind it for now, i even don't know what it is. But it returns it.
Example
curl = curlInit("http://mtasa.com/"); if not curl then outputDebugString("Can't connect to http://mtasa.com/ with cURL"); else curlSetopt(curl, CURLOPT_POST, true); curlClose(curl); end