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

后端 未结 13 1930
粉色の甜心
粉色の甜心 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:47

    If you specifically want the Content-Type, there's a special cURL option to retrieve it:

    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $response = curl_exec($ch);
    $content_type = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
    

提交回复
热议问题