How to use PHP cURL for data transfer

The biggest benefit of PHP cURL is its capability to handle various data transfer needs and seamlessly integrate with APIs. In this article, you’ll gain insights into PHP cURL’s syntax and functionality.

What is PHP cURL?

PHP cURL, short for “Curl URL Request Library”, is a PHP extension. It offers a way to send HTTP requests and communicate using different network protocols, including HTTP, HTTPS, and FTP. With cURL, you can adjust and manage headers, parameters, and data to fulfill API needs.

How to install PHP cURL?

To utilize cURL in PHP, you typically don’t have to install cURL separately, as it comes as a built-in extension. However, ensure that the cURL extension is enabled in your PHP setup. You can confirm cURL functionality by creating a PHP file and running the following code within it:

phpinfo();
php

On the generated page, look for cURL support or similar information to see if PHP cURL is enabled. If cURL is not active, you’ll need to edit the php.ini file. Therein, locate the expression ;extension=php_curl.dll for cURL in Windows or ;extension=curl for cURL in Linux. To activate the cURL extension, remove the semicolon “;” preceding the line. Save the file, and for the changes to take effect, restart the web server.

Learn the most important basics of PHP programming in our PHP tutorial – essential for using cURL. To learn more about the advantages and disadvantages of the PHP programming language, you can check out the comparisons between PHP vs. Python and PHP vs. JavaScript in the IONOS Digital Guide.

This is the syntax of PHP cURL

The syntax of PHP cURL consists of various functions and options to configure a cURL session, perform queries and work with the results.

Step 1: initialize a cURL session

$curl = curl_init();
php

Step 2: set options

curl_setopt($curl, CURLOPT_URL, 'https://example.com/api'); // defines the URL
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); // sets the result of the query as return value
php

Step 3: execute the cURL request

$response = curl_exec($curl);
php

Step 4: closing the cURL session

curl_close($curl);
php
Tip

Deploy Now from IONOS accelerates your development cycles and minimizes downtime. Discover flexible deployment strategies for your web projects with Deploy Now.

What cURL functions exist in PHP?

A variety of PHP functions are available to create HTTP requests or upload files. It’s also possible to use PHP to retrieve information from a MySQL database and send it as JSON via cURL.

Here are some of the most important cURL functions in PHP:

  • curl_init: Initializes a new cURL session and returns a cURL handle.
  • curl_setopt: Sets options for the cURL session. Parameters such as the URL, headers, or authentication methods are set here. You can also use PHP cURL to specify POST data to send to the server.
  • curl_exec: Executes the cURL session and returns the response as a string.
  • curl_close: Closes the cURL session and releases the resources.
  • curl_setopt_array: Defines an array of cURL options in a single call.
  • curl_getinfo: Returns information about the last cURL session, such as the URL or HTTP status code.
  • curl_error: Returns the error message from the last cURL request.
  • curl_errno: Returns the error code of the last cURL request.
  • curl_multi_init: Initializes a multi-cURL handle that allows you to make multiple cURL requests at the same time.
  • curl_multi_add_handle: Adds a cURL session to a multi-cURL handle.
  • curl_multi_exec: Executes the multi-cURL requests.
  • curl_multi_getcontent: Returns the content of the response for a given cURL session in the multi-cURL handle.
IONOS Developer API
Manage your hosting products through our powerful API
  • DNS management
  • Easy SSL admin
  • API documentation

An example of the use of cURL in PHP

By creating your own PHP classes, you can make the code more modular, define reusable methods, and simplify the implementation of PHP cURL in your applications.

Here’s an example of what a PHP class might look like in conjunction with PHP cURL GET:

class MyCurlClient {
    private $curl;
    public function __construct() {
        $this->curl = curl_init();
        // Further configurations can be made here
    }
    public function sendRequest($url) {
        curl_setopt($this->curl, CURLOPT_URL, $url);
        curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true);
        
        $response = curl_exec($this->curl);
        return $response;
    }
    public function close() {
        curl_close($this->curl);
    }
}
// Using your own class
$myCurl = new MyCurlClient();
$response = $myCurl->sendRequest('https://example.com/api');
echo $response;
$data = json_decode($response, true);
// Output of the data with PHP operators
echo "Post ID: " . $data['id'] . "<br>";
echo "Title: " . $data['title'] . "<br>";
echo "Body: " . $data['body'] . "<br>";
$myCurl->close();
php

In this example, we created the MyCurlClient class that handles a PHP cURL session in its constructor. The sendRequest() method takes a URL, configures the cURL options, and executes the HTTP GET request. The output strings are concatenated using PHP operators. Finally, we use the close() function to end the cURL session.

IONOS Object Storage
Secure, affordable storage

Cost-effective, scalable storage that integrates into your application scenarios. Protect your data with highly secure servers and individual access control.

Was this article helpful?
We use cookies on our website to provide you with the best possible user experience. By continuing to use our website or services, you agree to their use. More Information.
Page top