Returns the version of libcurl
curl_version()
| Return | A string containing the description of the used version-. |
Downloads file.
dlaod( uri, [stream] )
| uri | The uri to be downloaded. |
| stream | a Stream where to download the data. |
Downloads a file from a remote source and stores it on a string, or on a stream, as in the following sequence:
import from curl
data = curl.Handle( "http://www.falconpl.org" ).setOutString().exec().getData()
// equivalent:
data = curl.dload( "http://www.falconpl.org" )