如果设置了Content-Length,PHP cURL将返回错误52

时间:2014-12-17 11:10:04

标签: php curl content-length

我想通过php cURL在远程网站上发布一个表单。

这是我的cURL配置(我在评论中添加了几个解释):

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $action);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST'); //without this line the request is being sent with GET method (I can see that with curl_getinfo)
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_TIMEOUT, 50);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postData); //$postData is an urlencoded string
curl_setopt($ch, CURLINFO_HEADER_OUT, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36');
curl_setopt($ch, CURLOPT_REFERER,$url); 
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
    'Accept-Encoding: gzip, deflate',
    'Accept-Language: en-US,en;q=0.8',
    'Expect:',
    'Content-Type: application/x-www-form-urlencoded',
    'Connection: keep-alive',
    'Cache-Control: max-age=0',
    'Origin: http://XXX',
    ));

执行这样的配置后,我收到了这样的回复:

string(610) "HTTP/1.1 302 Found
Location: http://XXX
Vary: Accept-Encoding
Content-type: text/html; charset=utf-8
Server: DWS
Content-Length: 15536
Accept-Ranges: bytes
Date: Wed, 17 Dec 2014 10:59:35 GMT
X-Varnish: 2567206754
Age: 0
Via: 1.1 varnish
Connection: keep-alive

HTTP/1.1 411 Length Required
Content-Type: text/html
Server: DWS
Content-Length: 357
Accept-Ranges: bytes
Date: Wed, 17 Dec 2014 10:59:35 GMT
X-Varnish: 2567207187
Age: 0
Via: 1.1 varnish
Connection: keep-alive

我尝试将一个Content-Length标头添加到cURL配置中:

'Content-Length: ' . strlen($postData)

但是然后cURL失败并出现错误52(来自服务器的空回复)。 为了确保我指定的内容长度实际上是正确的,我尝试将一个cus tom字符串添加到CURLOPT_POSTFIELDS(如'foo = bar'),并设置Content-Length:7,但结果是相同。

我还试图隐藏整个代码并使用Zend 2 Http Client,但没有运气。 我想我已经阅读了有关cURL 52错误的所有其他帖子,但它们似乎都没有与Content-Length标题有任何共同之处,所以我希望有人可以帮助我。

如果您需要我提供更多信息,请与我们联系。

1 个答案:

答案 0 :(得分:0)

POST变量中指定的URL的$action请求返回HTTP 302重定向,其中CURL将使用GET发送下一个请求,请参阅此处的第2段:{ {3}}。

您已使用CURLOPT_CUSTOMREQUEST来解决此问题,但它也需要CURLOPT_POSTREDIR,如字符串部分中所述:http://curl.haxx.se/docs/manpage.html#-L

您不应该明确设置Content-Length,而是让CURL处理它。

或者您可以手动"关注" Location标头并使用$action变量中该标头的网址(首先尝试进行测试可能很有用)。