php curl报错:417 - Expectation Failed

Posted haxnt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php curl报错:417 - Expectation Failed相关的知识,希望对你有一定的参考价值。

    当我在post提交的数据增加一段内容后会报错:417 - Expectation Failed。

  查资料发现在使用curl做POST时,当post的数据大于1024字节时,curl并不会直接发起post请求,而是分为两步,

  1.发送一个请求,包含一个Exc:100-continue,询问Server接收数据

  2.接收到Server返回100-continue应答后,才把post提交给Server

RFC相关资料:https://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.2.3

然而我的路由器使用的是lighthttpd,它不正确应答100-continue,所以返回了417这个错误

解决办法是增加这个选项:curl_setopt($ch, CURLOPT_HTTPHEADER, array(‘Expect:‘)); 

以上是关于php curl报错:417 - Expectation Failed的主要内容,如果未能解决你的问题,请参考以下文章

php7.3 curl上传文件报错curl_setopt(): Disabling safe uploads is no longer supported

使用PHP CURL函数采集gzip编码网页报错

php curl 证书问题

wordpress 下载主题模板更新报错 No working transports found解决办法

ThinkPHP.php打开后为啥报错?

php使用curl扩展请求HTTPS链接报sslv3 alert 错误