PHP is a language widely used in web development, and CURL is one of the most widely used extensions in PHP. This article will introduce you to the basic usage and application of CURL to help beginners get started quickly.
1. Introduction to CURL
CURL is a command line tool that uses URL syntax to transmit data. It is also a library that supports multiple protocols and can run on multiple platforms. When using the CURL extension in PHP, it is mainly used for network communication through protocols such as HTTP and HTTPS to send data to other servers, obtain server responses, simulate form submission, etc.
2. CURL installation
To use the CURL extension in PHP, you need to confirm that the local environment has support for the CURL library. In Linux and Mac OS
After the installation is completed, you can check whether the installation has been completed through the
phpinfo()function. If it prompts thatcurl
support is enabled, it means that the CURL extension is ready.3. Basic usage of CURL
sudo apt-get install libcurl4-openssl-dev // Debian/Ubuntu sudo yum install curl-devel // CentOS/Fedora
Among them,
curl_init()The function is used to initialize a CURL object, thecurl_setopt()
function is used to set the options of the CURL request, thecurl_exec()
function is used to execute the CURL request And get the response result,curl_close()
function is used to close the CURL object.In the above example, we use the
function to set the requested URL,CURLOPT_RETURNTRANSFER
option andCURLOPT_HEADER
option. Among them, when theCURLOPT_RETURNTRANSFER
option is set to 1, it means that the obtained response result will be returned in the form of a string.CURLOPT_HEADER
When the option is set to 0, it means that the response header information is not included in the response result.
Among them,
curl_setopt()function is newly added Two options are available:CURLOPT_POST
andCURLOPT_POSTFIELDS
. When theCURLOPT_POST
option is set to 1, it means that the request is sent in POST mode. When theCURLOPT_POSTFIELDS
option is set to a string, it means that these data are sent as the body of the POST request.It should be noted that in order to correctly send POST data to the server, the correct
header information needs to be set. This can be set via theCURLOPT_HTTPHEADER
option of thecurl_setopt()
function.4. Advanced usage of CURL
functionCURLOPT_HTTPHEADER
option to set HTTP header information.
The above code sets the Content-Type header information to application/json, sets a header information named Authorization, and sets a value for it. The purpose of this header information is to provide a security token for the request so that the server can verify the legitimacy of the request.<?php //创建CURL对象 $ch = curl_init(); //设置URL和相应的选项 curl_setopt($ch, CURLOPT_URL, "http://api.example.com/user"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "id=123&name=John"); //执行CURL请求并获取响应结果 $output = curl_exec($ch); //关闭CURL对象 curl_close($ch); //输出响应结果 echo $output; ?>
andCURLOPT_SSL_VERIFYHOST
options of thecurl_setopt()
function.For example, the following code can be used to turn off the verification of the SSL certificate:
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Authorization: Bearer xxx'));
It should be noted that in actual applications, enabling the verification of the SSL certificate as much as possible is to ensure the security of the request. Very important.
Cookie processingcurl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
When sending the next request, use the CURLOPT_COOKIEFILE option of the curl_setopt() function to specify the file path where the cookie information is saved.
curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies');
4. Summary
Through the introduction of this article, I believe that readers have initially understood the basic usage of CURL extension, including sending GET/POST requests, setting HTTP header information, SSL/ TLS verification and cookie handling, these contents will help us better program network communication. Next, you can try to use CURL extensions to develop some practical network applications, continue to learn more, and improve your programming skills.
The above is the detailed content of Getting Started with PHP: CURL Extension. For more information, please follow other related articles on the PHP Chinese website!