PHP:curl禁用100-continue header
发表:2014-11-14 16:07
作者:loeyae@loeyae@gmail.com
引用:stickman
来源:http://the-stickman.com/web-development/php-and-curl-disabling-100-continue-header/
使用PHP的curl发送请求时,curl会默认发送一个header:Expect: 100-continue。如果像你的curl变得更快,需要禁用它:
curl_setopt( $curl_handle, CURLOPT_HTTPHEADER, array('Expect:'));