得到
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).这是传给微信的所以跟正常的不太一样。