7.4Functions

curl_version

Returns the version of libcurl

curl_version()
ReturnA string containing the description of the used version-.

dlaod

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" )
Made with http://www.falconpl.org