Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any way to get both headers and body for a cURL request using PHP? I found that this option:

curl_setopt($ch, CURLOPT_HEADER, true);

is going to return body plus headers, but then i need to parse it to get the body. Any way to get both in a more usable (and secure) way?

EDIT: for "single request" i mean avoind issuing a HEAD request prior of GET/POST.

share|improve this question

3 Answers

up vote 45 down vote accepted

Yes. For details, please take a look at this post in the PHP documentation: http://www.php.net/manual/en/function.curl-exec.php#80442

Code example:

$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);

// 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);
share|improve this answer
Is this reliable? I mean using header size. Thanks. – Gremo Feb 7 '12 at 21:31
You can also list($header, $body) = explode("\r\n\r\n", $response, 2), but this might take a bit longer, depending on your request size. – iblue Feb 7 '12 at 21:33
Thanks, answer accepted. So bad headers are in raw format btw. Looking for a good parsing function. – Gremo Feb 7 '12 at 23:26
3  
2  
this is bad solution because if you use proxy server and your proxy server(fiddler for example) add own headers to response - this headers broke all offsets and you should use list($header, $body) = explode("\r\n\r\n", $response, 2) as only working variant – msangel Feb 25 at 2:17
show 1 more comment

is this what are you looking to?

$response = curl_exec($ch); 
list($header, $body) = explode("\r\n\r\n", $response, 2);
share|improve this answer
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);

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

In 99% percent of use cases this code will work properly, but when yours connection is going through the proxy the results can be unexpected because proxy can modify or add headers to your response without modifing header size :/

If you have to find something "special" from your response try use preg_match() it's safer

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.