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.
