我需要使用 PHP 和 Curl 的多部分 POST 将 csv 文件和一些 POST 字段 HTTP PUT 到 REST API 端点。
文件上传的内容存储在变量 $list 中。另一个端点是 $url。
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_PUT, true);
$post = array(
//Other Post fields array
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$fh = fopen('php://memory', 'rw');
fwrite($fh, $list);
rewind($fh);
curl_setopt($ch, CURLOPT_INFILE, $fh);
curl_setopt($ch, CURLOPT_INFILESIZE, strlen($list));
$response = curl_exec($ch);
上面的代码似乎可以工作,唯一的问题是另一个端点需要一个特定的字段名来上传文件。如何设置文件名?
难道我做错了什么 ?
这是他们在 API 上提到的 PUT 格式
Content-Disposition: form-data; name="list[csv]"; filename="RackMultipart20110923-63966-hfpyg"
Content-Length: 33
Content-Type: text/csv
Content-Transfer-Encoding: binary
xxxx
yyyy
zzzz
-------------MultipartPost
Content-Disposition: form-data; name="list[list_type]"
Blacklist
-------------MultipartPost--