When using the PHP curl functions, is there anyway to see the exact raw headers that curl is sending to the server?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use curl_getinfo: Before the call
After
|
|||||||||
|
Only available in php 5.1.3 http://php.net/manual/en/function.curl-getinfo.php You can verify that they are the same by using your console and hitting curl http://example.com/ -I or curl --trace-ascii /file.txt http://example.com/ |
|||
|
|
|
be sure to set the CURLINFO_HEADER_OUT option before making the curl_getinfo call curl_setopt($c, CURLINFO_HEADER_OUT, true); |
|||||||||||
|
|
AFAIK, the PHP/CURL binding still lacks proper support for CURLOPT_DEBUGFUNCTION which is a callback from libcurl that can provide all those details. That's the primary reason why I recommend people to work out HTTP scripting things with the curl command line tool and its --trace-ascii option FIRST, then translate that into a PHP function. |
|||
|