Can PHP cURL retrieve response headers AND body in a single request?

后端 未结 13 1762
粉色の甜心
粉色の甜心 2020-11-22 03:28

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);
13条回答
  •  青春惊慌失措
    2020-11-22 03:58

    is this what are you looking to?

    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
    $response = curl_exec($ch); 
    list($header, $body) = explode("\r\n\r\n", $response, 2);
    

提交回复
热议问题