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
Is php a backend?
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what’s the problem?
Do you know what is the function func_num_args() used for?
What is empty () in php?
Do while loops?
What is var_dump function in php?
Explain Creating and Naming an Array?
How to turn on the session support in php?
Which Scripting Engine PHP uses?
Explain me what is the meaning of a persistent cookie?
What is the goto statement useful for?
What is the difference between pop3 IMAP and MAPI?
Tell me how is it possible to know the number of rows returned in result set?
How can we determine whether a variable is set?
Explain about getters and setters in php?