What is cURL in PHP ?

devquora
devquora

Posted On: Feb 22, 2018

 

    1 Answer Written

  •  devquora
    Answered by Anil Saini

    Curl is a command tool that allows sending and receiving requests with help of URL syntax. cURL in PHP allows you to make requests in HTML so that you can connect and get responses from other URLs. You can also access curl function in PHP and can also use it in several languages like ASP.NET, PHP, etc. The curl or client URL is supported by the version 4.0.2 of PHP. You can send post requests on any URL by using the PHP curl library. In your PHP script with the help of a curl extension, you can use multiple web resources. For using curl in PHP you should have a basic idea of curl in PHP.

Related Questions

Please Login or Register to leave a response.

Related Questions

PHP Interview Questions

What is T_PAAMAYIM_NEKUDOTAYIM in PHP?

T_PAAMAYIM_NEKUDOTAYIM is scope resolution operator used as :: (double colon) .Basically, it used to call static methods/variables of a Class...

PHP Interview Questions

What is the difference between == and === operator in PHP ?

In PHP == is equal operator and returns TRUE if $a is equal to $b after type juggling and === is Identical operator and return TRUE if $a is equal to $b, and they are of the same data type...