Modules/cURL/curl init: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Modules/cURL/func_page| | {{Modules/cURL/func_page| | ||
description = Initialize the curl engine.| | description = Initialize the curl engine.| | ||
syntax = curl curl_init(string url)| | syntax = <syntaxhighlight lang="lua">curl curl_init(string url)</syntaxhighlight>| | ||
required_arguments = * '''url''' The url which you want to connect too.| | required_arguments = * '''url''' The url which you want to connect too.| | ||
returns = A valid curl handler on succes, otherwise it returns false| | returns = A valid curl handler on succes, otherwise it returns false| | ||
example = curl = curl_init("http://mtasa.com/"); | example = <syntaxhighlight lang="lua"> | ||
curl = curl_init("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"); | ||
Line 10: | Line 11: | ||
// lets do something here. | // lets do something here. | ||
end | end | ||
</syntaxhighlight> | |||
}} | }} | ||
[[Category:Modules]] | [[Category:Modules]] |
Revision as of 20:34, 13 June 2010
This function is provided by the external module cURL. You must install this module to use this function. | |
Initialize the curl engine.
Syntax
curl curl_init(string url)
Required arguments
- url The url which you want to connect too.
Optional arguments
{{{optional_arguments}}}
Returns
A valid curl handler on succes, otherwise it returns false
Example
curl = curl_init("http://mtasa.com/"); if not curl then outputDebugString("Can't connect to http://mtasa.com/ with cURL"); else // lets do something here. end