>  기사  >  백엔드 개발  >  php通过curl上传图片到https的服务器需要哪些要注意的。求调教

php通过curl上传图片到https的服务器需要哪些要注意的。求调教

WBOY
WBOY원래의
2016-06-23 13:53:35915검색


得到
require_once '../wechat/class/configWX.php';
error_reporting(E_ALL);
//图片上传  
$file = dirname(__FILE__).'\zzz.jpg'; //要上传的文件
$ch = curl_init();
$url = 'https://api.weixin.qq.com/merchant/common/upload_img?access_token='.$_SESSION['access_token'].'&filename=zzz.jpg';
echo $url;
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1 );
curl_setopt($ch, CURLOPT_POSTFIELDS, $file);
$data = curl_exec($ch);//执行curl
echo $data.'
';
curl_close($ch);


回复讨论(解决方案)

curl_setopt($ch, CURLOPT_POSTFIELDS,  "file=@$file");

标题描述不对,是通过https的协议上传图片。

我传的参数不对,应该是用$data=file_get_contents('url');curl_setopt($ch, CURLOPT_POSTFIELDS, $data).这是传给微信的所以跟正常的不太一样。 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.