关于PHP CURL POST请求时 请求头中带Expect:100-continue

当PHP 请求数据大于1024字节的时候,CURL会先发送一个包含Expect:100-continue的请求 ,

询问Server使用愿意接受数据

接收到Server返回的100-continue应答以后, 才把数据POST给Server

并不是所有的Server都会正确应答100-continue

  curl_error返回 Recv failure: Connection was aborted

解决办法:

curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));

 

上一篇:Nexus 5 Android L 使用感受,以及如何刷回 4.4 Kitkat


下一篇:break和continue语句