Php Curl Get Body Response

[Solved] Php Curl Get Body Response | Php - Code Explorer | yomemimo.com
Question : php curl get response body

Answered by : jareer

$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);

Source : https://stackoverflow.com/a/9183272/12398332 | Last Update : Sat, 25 Dec 21

Question : php curl get body response

Answered by : akbarali

curl_setopt($ch, CURLOPT_HEADER, false);

Source : | Last Update : Wed, 29 Dec 21

Answers related to php curl get body response

Code Explorer Popular Question For Php