2

使用 cURL 上传文件时,我发现远程端的文件正在被修改,并且标头信息被转储到文件中。我怀疑这是我的标题信息中的内容,但除此之外我迷路了。我几乎在尝试任何东西。

这是我正在使用的代码。

$fLocation = realpath('file.csv');  
$finfo = finfo_open(FILEINFO_MIME_TYPE);  
$fType = finfo_file($finfo, $fLocation);  
finfo_close($finfo);      
$cFile = curl_file_create($fLocation);  
$post = array('file'=> $cFile);  
$ch = curl_init();  
curl_setopt($ch, CURLOPT_URL, $url);  
curl_setopt($ch, CURLOPT_POST,1);  
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);  
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);  
curl_setopt($ch, CURLOPT_USERPWD, $username.":".$password);  
curl_setopt($ch, CURLOPT_HTTPHEADER, "Content-Type: application/octet-stream");  
$result = curl_exec($ch);  

我已经为标头尝试了几种不同的 Content-Type,从 application/binary 到 multipart/form-data,甚至根本没有在标头中发送 content-type。我怀疑我需要在标题中添加更多内容。

无论如何,我发送的文件是 .csv,但我想最后发送一个 .xlsx 文件(我正在使用 .csv 进行测试)。当我从远程服务器获取文件并在文本编辑器中打开它时,我看到文件的开头和结尾添加了信息,文件的原始数据介于两者之间。这是添加到顶部的内容。

=--------------------------a0fe4530540c659b  
Content-Disposition: form-data; name="file"; filename="/home/username/website/path/file.csv"  
Content-Type: application/octet-stream 

而且,底部

--------------------------a0fe4530540c659b--

本质上,当我的所有 .xlsx 文件到达另一端时,它们都已损坏时,我发现了这一点。我将发送的内容更改为纯文本文件 (CSV),那时我才意识到发生了什么。

这里有更多有趣的信息。实际上是我通过他们的 API 向 ZenDesk 发送了一些东西,而且我显然是在 PHP 中使用 cURL 执行此操作的。当我收到 Zendesk 的 JSON 回复时,其中一部分看起来像这样......

[file_name] => file.csv  
[content_url] => https://org.zendesk.com/attachments/token/jdjdjdjdjdjhdjdjdj/?name=file.csv  
[content_type] => multipart/form-data  
[size] => 5615  

有趣的是,它看到了我上传的多部分/表单数据。即使我更改标头中的 Content-Type,这仍然是正确的。

当然,我在这里错过了一些愚蠢而简单的东西。

4

2 回答 2

1

众所周知,这与标题有关。这是最终为我解决问题的代码。

$ch = curl_init();
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10 );
curl_setopt($ch, CURLOPT_URL, $json_url);
curl_setopt($ch, CURLOPT_USERPWD, $username.":".$password);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type: application/binary'));
curl_setopt($ch, CURLOPT_POST, true);
$file = fopen($fLocation, 'r');
$size = filesize($fLocation);
$fildata = fread($file,$size);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fildata);
curl_setopt($ch, CURLOPT_INFILE, $file);
curl_setopt($ch, CURLOPT_INFILESIZE, $size);
curl_setopt($ch, CURLOPT_USERAGENT, "MozillaXYZ/1.0");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_VERBOSE, true);
$result = curl_exec($ch);
于 2020-01-03T06:30:07.940 回答
0

您无需设置类似Content-Type: application/octet-stream或其他标题即可上传文件。只需要使用curl_file_create方法来发送您的文件。

您的代码必须是这样的:

if (function_exists('curl_file_create')) { // for php 5.5+
    $File_Address = curl_file_create($file_name_with_full_path);
} else {
    $File_Address = '@' . realpath($file_name_with_full_path);
}

$post = array('file_name'=> $File_Address);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_USERPWD, $username.":".$password);

$result = curl_exec($ch);
于 2019-12-29T06:11:00.747 回答