PHP 升级到7.4.0后,通过curl上传文件http_code报412

我将PHP环境升级到7.4.0后,使用curl向微信公众平台上传图片不能成功,代码如下所示,切换到php7.3.x版本运行正常。php7.4.0版本下,在http_post方法的倒数第二行打印相关信息,发现http_code为412。我暂时还没搞清楚PHP7.4.0对curl改进了哪些地方,于是我想问问大家这个问题如何解决?谢谢
php7.4.0更新日志:https://www.php.net/manual/zh... 中,关于curl的更新内容(我有些看不太懂):
Attempting to serialize a CURLFile class will now generate an exception. Previously the exception was only thrown on unserialization.
Using CURLPIPE_HTTP1 is deprecated, and is no longer supported as of cURL 7.62.0.
The $version parameter of curl_version() is deprecated. If any value not equal to the default CURLVERSION_NOW is passed, a warning is raised and the parameter is ignored.

http_post('https://api.weixin.qq.com/cgi-bin/material/add_material?access_token=30_qWX84lsPcUMyvpkkVmGDyk2QkwfFz7HA6ufaeeI_NruPPPysaMVODEr8U8Ow4V6WccmvRi1aJ6oJ4Zq8wENwSUfneIaz6uuf2GqOOSHvtwBjVH0CXs_jCmOaasGf6CKBRN2B3YHyRzmCRhPpWMGiABAQGA&type=image');

function http_post($url){
    $oCurl = curl_init();
    curl_setopt($oCurl,CURLOPT_SSL_VERIFYPEER,false);
    curl_setopt($oCurl,CURLOPT_SSL_VERIFYHOST,false);
    curl_setopt($oCurl,CURLOPT_SSLVERSION,1);
    curl_setopt($oCurl,CURLOPT_URL,$url);
    curl_setopt($oCurl,CURLOPT_RETURNTRANSFER,1);
    curl_setopt($oCurl,CURLOPT_POST,true);
    curl_setopt($oCurl,CURLOPT_POSTFIELDS,['media'=>new CURLFile('C:\Users\TYJ\Desktop\10001.jpg')]);
    $sContent = curl_exec($oCurl);
    $aStatus = curl_getinfo($oCurl);
    print_r(curl_error($oCurl));
    curl_close($oCurl);
    print_r($aStatus);
    return intval($aStatus['http_code'])==200 ? $sContent : false;
}
阅读 4.8k
2 个回答

已解决,做下记录。

HTTP 412错误就是先决条件不满足,所以就是请求头的问题,至于如何输出请求头,网上有资料。

根据对比PHP7.4.0之前的版本和PHP7.4.X的请求头得出结论,PHP7.4.0之前的版本的请求头默认有Content-Length字段,且其值比文件的字节大小多198,并且请求头中不包含Transfer-Encoding字段。而PHP7.4.X的请求头中不包含Content-Length字段,所以要添加上,且默认包含Transfer-Encoding字段,所以要把该字段设置为空。

以题目中的代码为例,如果切换到PHP7.4.0或以上版本,需要在

$sContent = curl_exec($oCurl);

前面添加一行代码:

curl_setopt($oCurl,CURLOPT_HTTPHEADER,['Transfer-Encoding:','Content-Length:'.(filesize('C:\Users\TYJ\Desktop\10001.jpg')+198)]);

并将:

curl_setopt($oCurl,CURLOPT_POSTFIELDS,['media'=>new CURLFile('C:\Users\TYJ\Desktop\10001.jpg')]);

改为:

curl_setopt($oCurl,CURLOPT_POSTFIELDS,['media'=>new CURLFile('C:\Users\TYJ\Desktop\10001.jpg','','a.jpg')]);

注:文件路径可根据需求改为变量,而且还发现CURLFile的第三个参数,也就是a.jpg,不能用变量,只能用固定的字符串。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题