How to POST and Receive JSON Data using cURL in PHP

POST and Receive JSON Data using cURL in PHP

In this article you will learn about how to create web services APIs using PHP. Iif you are working with web services, you need to know about how we can POST and Receive JSON Data using cURL in PHP. Sending and Receiving JSON data via POST Request is most important functionality in PHP. It’s make easy to POST JSON data to APIs url and receive response in JSON data format. So, Today we will learn about “How to POST and Receive JSON Data using cURL in PHP”.

Let’s Start to send JSON data via POSt Request with PHP cURL:

In the following example code, i will show you HTTP POST request and send JSON data to URL with cURL function.

Step-1: First we will specify URL ($url) where the JSON data need to be send.
Step-2: Initiate cURL resource using curl_init().
step-3: encode PHP array data into aJSON string using json_encode().
step-4: Attach JSON data to the POSt field using the CURLOPT_POSTFIELDS option.
step-5: set header option to Content-Type: application/json
step-6: Return response as string CURL_RETURNTRANSFER option
Step-7: Finally curl_exec() function is used to execute the POST request api url.

 index.php

In the following example code, We will pass POST data on API URL as JSON format.

test.php

In the following code, We will Receive JSON POST data using PHP

jsone_decode() function is used to decode JSON data into array format and file_get_content() function is used to receivedata in readable format

Are you want to get implementation help, or modify or extend the functionality of this script? Submit paid service request

 

Related posts