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

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

    Just set options :

    • CURLOPT_HEADER, 0

    • CURLOPT_RETURNTRANSFER, 1

    and use curl_getinfo with CURLINFO_HTTP_CODE (or no opt param and you will have an associative array with all the informations you want)

    More at : http://php.net/manual/fr/function.curl-getinfo.php

提交回复
热议问题