Answers for "php curl get response data"

PHP
5

php curl get response body

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
$response = curl_exec($ch);
// Then, after your curl_exec call:
$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
$header = substr($response, 0, $header_size);
$body = substr($response, $header_size);
Posted by: Guest on December-18-2021
0

how to read data from curl php

$data = json_decode(file_get_contents('php://input'), true);
Posted by: Guest on September-19-2019

Browse Popular Code Answers by Language