All functions

curl_version()

Returns the version of libcurl

curl_version

Returns:A string containing the description of the used version-.

dlaod()

Downloads file.

dlaod( uri, [stream] )

uriThe uri to be downloaded.
streama 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" )


Made with faldoc 2.2.1