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 how can we execute a php script using command line?
What are advantages of .htaccess?
How is it possible to return a value from a function?
What does $_ post mean in php?
What is a controller in php?
How can we calculate the similarity between two strings?
How do I end a php session?
Tell me how can we determine whether a php variable is an instantiated object of a certain class?
Explain the purpose of output buffering in php.
What is put method in php?
What is needed to be able to use image function?
How to convert numbers to strings in php?
Steps for the payment gateway processing?
What is the meaning of php?
How to track no of user logged in?