我想用php curl上传照片。这是我的代码,但不起作用。
$uploadRequest = array(
'name' => 'profile_pic',
'filename' => 'profilepic.jpg',
'form-data' => base64_encode(file_get_contents("http://res.cloudinary.com/brk/image/upload/kadin/168.jpg"))
);
我在curl中使用此数组;
..
CURLOPT_POSTFIELDS => $uploadRequest,
..
当我以手动方式上传照片时,这是XHR标头信息:
Content-Disposition: form-data; name="profile_pic"; filename="profilepic.jpg"
Content-Type: image/jpeg
我在哪里做错了?