如何使用PHP cURL发送正确内容的图像

目的:

我想使用multipart / form-data发送多个图像。 以下是我的代码片段。

问题:

在一台PC上,多部分附件由正确的MIME头Con​​tent-Type:image / jpeg发送,但在另一台PC上,MIME头为Content-Type:application / octet。

题:

我如何强制cURL为MIME内容设置正确的Content-Type标头?

$ch = curl_init();

$params = array('name' => '@D:globe.jpg');  

$base_url = "https://example.com"."?".varEncode($test_data);

curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_VERBOSE, TRUE);
curl_setopt($ch, CURLOPT_URL,$base_url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 

$result = curl_exec($ch);

使用CURLOPT_HTTPHEADER选项:

curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: image/jpeg"));

因此,请指定专门用于文件上传的Content-Type标头,请使用:

$params = array('name'=>'@D:globe.jpg;type=image/jpeg');
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
链接地址: http://www.djcxy.com/p/48881.html

上一篇: How to use PHP cURL to send images with the correct Content

下一篇: Run cURL commands from Windows console