What is the meaning of curl , which is used while connecting
with pay pal? and how it works?
Answer Posted / madipally naveen kumar
Curl means client URL , php supports libcurl which allows
you to connect and communicate to many different types of
servers with many different types of protocals .libcurl
currently supports http,https,ftp,gopher,telnet and ldap
protocals.Once you have enabled the php with curl
support.you can use the curl functions.You can intialize a
curl session using the curl_init(),then you can set all
your options for the transfer via the curl_setopt(),then
you can execute the session wiht the curl_exec() and then
you can finish off your session using the curl_close().
| Is This Answer Correct ? | 56 Yes | 0 No |
Post New Answer View All Answers
Explain the types of functions for Splitting String?
What is use of in_array() function in php?
What is the name of scripting engine in php?
Explain array_uintersect()?
What is the use of the function 'imagetypes()'?
Is null check in php?
how retrive the video file in php using video tag
Which PHP function would you use to send an email?
Why do we use polymorphism in php?
How to download file in php?
What is crypt () in php?
How can i execute PHP File using Command Line?
How do you sort an array in php?
Write down the code for saving an uploaded file in PHP.
How do I sort numbers in php?