PHP Send local file by cURL(PHP 通过 cURL 发送本地文件)
问题描述
我正在尝试通过客户端 curl 应用程序发送本地文件.我找到了一些示例来处理表单中的文件.就我而言,我没有表单,只有一个本地文件.
Im trying to send a local file by client curl app. I found some examples to do that with files from a form. In my case, I have no form, but a local file.
$fileName = $_SERVER["DOCUMENT_ROOT"]."/www/images/test.pdf";
if(!file_exists($fileName)) {
$out['status'] = 'error';
$out['message'] = 'File not found.';
exit(json_encode($out));
}
$data = array('name' => 'Foo', 'file' => '@'.$fileName);
$cURL = curl_init("http://myapi/upload-images");
curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true);
curl_setopt($cURL, CURLOPT_POST, 1);
curl_setopt($cURL, CURLOPT_POSTFIELDS, $data);
$response = curl_exec($cURL);
$error = curl_error($cURL);
curl_close($cURL);
die($response);
有了这个,我没有错误,但在服务器中 $_POST 和 $_SERVER 数组是空的.
With this, I have no erros, but in server the $_POST and $_SERVER arrays is empty.
我尝试了其他方法,这次在发送之前创建了一个 Curl 文件:
I tried otherwise, this time creating a Curl file before send:
// Mime type of file
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$finfo = finfo_file($finfo, $fileName);
$cFile = new CURLFile($fileName, $finfo, "file");
//var_dump($cFile);
//CURLFile Object
//(
// [name] => C:/.../test.pdf
// [mime] => application/pdf
// [postname] => file
// )
$cURL = curl_init("http://myapi/upload-images");
curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true);
curl_setopt($cURL, CURLOPT_POST, true);
curl_setopt($cURL, CURLOPT_POSTFIELDS,
array(
'file' => $cFile
));
$response = curl_exec($cURL);
curl_close($cURL);
die($response);
同样的反应.$_FILES 为空.
Same response. $_FILES is empty.
推荐答案
终于找到问题的原因了.包含文件数据的数组必须有文件数据和文件名键.
Finally I found the reason of issue. The array with file data must have filedata and filename keys.
我们可以在带有完整路径的文件名之前传递@",但这已被弃用.
We can pass '@' before file name with full path but this is deprecated.
$data = array( "filedata" => '@'.$fileName, "filename" => basename($fileName));
在这种情况下,我添加了一个 Curl 对象:
In this case I added a Curl object:
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$finfo = finfo_file($finfo, $fileName);
$cFile = new CURLFile($fileName, $finfo, basename($fileName));
$data = array( "filedata" => $cFile, "filename" => $cFile->postname);
完整代码为:
$fileName = $_SERVER["DOCUMENT_ROOT"]."/www/images/test.pdf";
$fileSize = filesize($fileName);
if(!file_exists($fileName)) {
$out['status'] = 'error';
$out['message'] = 'File not found.';
exit(json_encode($out));
}
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$finfo = finfo_file($finfo, $fileName);
$cFile = new CURLFile($fileName, $finfo, basename($fileName));
$data = array( "filedata" => $cFile, "filename" => $cFile->postname);
$cURL = curl_init("http://myapi/upload-images")
curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true);
// This is not mandatory, but is a good practice.
curl_setopt($cURL, CURLOPT_HTTPHEADER,
array(
'Content-Type: multipart/form-data'
)
);
curl_setopt($cURL, CURLOPT_POST, true);
curl_setopt($cURL, CURLOPT_POSTFIELDS, $data);
curl_setopt($cURL, CURLOPT_INFILESIZE, $fileSize);
$response = curl_exec($cURL);
curl_close($cURL);
die($response);
这篇关于PHP 通过 cURL 发送本地文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP 通过 cURL 发送本地文件


基础教程推荐
- 主题化 Drupal 7 的 Ubercart “/cart"页 2021-01-01
- PHPUnit 的 Selenium 2 文档到底在哪里? 2022-01-01
- Web 服务器如何处理请求? 2021-01-01
- php中的PDF导出 2022-01-01
- 使用 scandir() 在目录中查找文件夹 (PHP) 2022-01-01
- php 7.4 在写入变量中的 Twig 问题 2022-01-01
- 将变量从树枝传递给 js 2022-01-01
- Yii2 - 在运行时设置邮件传输参数 2022-01-01
- php中的foreach复选框POST 2021-01-01
- 如何在数学上评估像“2-1"这样的字符串?产生“1"? 2022-01-01