The following post will explain how to use PHP/cURL to retrieve data in JSON or XML and process it for using in your PHP application
cURL is a command line tool that uses URL syntax to transfer data to and from servers. cURL is extremely flexible and can be used to transfer all sorts of data over various connections. In this example we’ll be using a HTTP request over SSL with a key and host value sent in the headers.
$ch = curl_init();
First initialise your cURL request.
$optArray = array( CURLOPT_URL => 'https://example.com/api/getInfo/', CURLOPT_RETURNTRANSFER => true );
Then set the request options, this request will load the contents of https://example.com/api/getInfo
.
$headers = [ "Access-Key: 123456789QWERTYUIOP", "Access-Token: ASDFGHJKL0987654321", ];
Then send the headers, in this instance the headers include two values “Access-Key” and “Access-Token” these
will be used by example.com
to verify the request is coming from the right source.
curl_setopt_array($ch, $optArray); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $result = curl_exec($ch);
Next the options and headers are added to the cURL request, and the request is executed. The result of the request
will be stored in $result
.
If the value that is returned is in JSON format we’ll need to convert it from JSON into a PHP object:
$processed = json_decode($result, true);
Alternatively, if it is in XML the following code can be used:
$processed = simplexml_load_string($result);
The $processed
variable will now contain our PHP object, ready for processing.
June 2024
Here’s detailed look at some of the most popular PHP frameworks, each of which can help speed up development, improve code organisation, and enhance application...
March 2024
As PHP continues to evolve, so do the threats that target its vulnerabilities. Ensuring robust PHP security practices is paramount to safeguarding sensitive data and...
→ Continue reading"PHP Security in 2024: navigating the evolving landscape"
December 2022
Laravel is a powerful and popular PHP framework designed to make web development easier and more efficient. This quick start guide will help you set...
→ Continue reading"Quick start guide for Laravel on a PHP server"
August 2021
This PHP function accepts a public Google Sheets URL and converts it into a PHP array. You can use the array to either display the...
March 2021
The following post will explain how to use PHP/cURL to retrieve data in JSON or XML and process it for using in your PHP application...
February 2021
The roll out of 3D Secure 2 has been a long drawn-out process not helped by the COVID–19 pandemic. Part of the update has included...
→ Continue reading"Global Payments: Strong Customer Authentication (SCA) and 3D Secure 2"