Show Curl POST Request Headers? Is there a way to do this?

前端 未结 5 623
情话喂你
情话喂你 2020-12-02 13:59

I\'m building a Curl web automation app and am having some issue with not getting the desired outcome of my POST action, I am having some trouble figuring out how I can show

5条回答
  •  臣服心动
    2020-12-02 14:43

    Here is all you need:

    curl_setopt($curlHandle, CURLINFO_HEADER_OUT, true); // enable tracking
    ... // do curl request    
    $headerSent = curl_getinfo($curlHandle, CURLINFO_HEADER_OUT ); // request headers
    

提交回复
热议问题