What are some of basic steps involved while using cURL?

devquora
devquora

Posted On: Feb 22, 2018

 

Some of the basic steps involved in using cURL are:

  • curl_init: It is used to initialize the session and also return a cURL handle that has been passed onto other cURL commands.
  • curl_opt: This function can be used multiple times in order to specify what exactly the user expects the library to perform.
  • curl_exec: This function is used to execute a cURL session that has been commanded by the user.
  • curl_close: This function is used to close the session once the desired function has been performed as directed by the user.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Curl Interview Questions

    What is Curl?

    cURL is a programming language or a project that is short for “Client for URLs”..

    Curl Interview Questions

    What is libcURL?

    “libcURL” is a product of cURL that is a very dependable and moveable..

    Curl Interview Questions

    How is cURL different from other platforms?

    Unlike other platforms, cURL is targeted to work at a single shot transfer for files and it should be confused with wget clones. cURL does not perform the usual website monitoring programs, however, v...