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
When is a conditional statement ended with an endif?
What is use of count() function in php?
What is Type hinting in PHP?
What is session in c#?
With a heredoc syntax, do I get variable substitution inside the heredoc contents?
What are the functions to be used to get the image's properties (size, width and height)?
Is php better than java?
Tell me what are the __construct() and __destruct() methods in a php class?
What are the two main string operators?
What is the mysql injection?
What are the functions for imap?
How to close a session properly?
What are the main error types in php and how do they differ?
Why do we need session?
Tell me how to execute an sql query? How to fetch its result?