如何通过 PHP 使用 curl 上传文件 [关闭]

Posted

技术标签:

【中文标题】如何通过 PHP 使用 curl 上传文件 [关闭]【英文标题】:how to upload file using curl with PHP [closed] 【发布时间】:2013-02-18 11:40:31 【问题描述】:

我想知道如何使用 cURL 或 php 中的任何其他方式上传文件。 google了很多遍都没有结果。

换句话说,用户在表单上看到一个文件上传按钮,该表单被发布到我的 php 脚本,然后我的 php 脚本需要将其重新发布到另一个脚本(例如在另一个服务器上)。

我有这个代码来接收文件并上传它

代码:

echo"".$_FILES['userfile']."";
$uploaddir = './';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
if ( isset($_FILES["userfile"]) ) 
    echo '<p><font color="#00FF00" size="7">Uploaded</font></p>';
    if (move_uploaded_file
($_FILES["userfile"]["tmp_name"], $uploadfile))
echo $uploadfile;
    else echo '<p><font color="#FF0000" size="7">Failed</font></p>';

我希望代码将文件发送到接收文件。

【问题讨论】:

不使用 "ftp" ,我想在 $_FILES['userfile'] 中使用 curl 发送文件 嗯...现在怎么办?你想把它寄到哪里?你的目标系统是什么? 到php文件(有问题的源)-目标系统是linux 【参考方案1】:

用途:

if (function_exists('curl_file_create'))  // php 5.5+
  $cFile = curl_file_create($file_name_with_full_path);
 else  // 
  $cFile = '@' . realpath($file_name_with_full_path);

$post = array('extra_info' => '123456','file_contents'=> $cFile);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$result=curl_exec ($ch);
curl_close ($ch);

您也可以参考:

http://blog.derakkilgo.com/2009/06/07/send-a-file-via-post-with-curl-and-php/

PHP 5.5+ 的重要提示:

现在我们应该使用https://wiki.php.net/rfc/curl-file-upload,但如果您仍想使用这种已弃用的方法,那么您需要设置curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false);

【讨论】:

也许,是使用 curl 内置功能的更好方法:php.net/manual/es/function.curl-file-create.php。当然,你可以使用 POSTFIELDS 的方式,将前面的值填入@。无论如何,asnwer 是从博客中自定义使用 curl 复制而来的。正确答案是 @ char 将其定义为文件,而不是 var。 $post 将包含 @filename.jpg 示例。 @erm3nda 这只是 PHP 5.5+。 @fiXedd im 当前使用 php 5.6,需要使用 curl_file_create(karthik 提供的解决方案不起作用)。所以代码应该升级成这样的:if function_exists('curl_file_create')) $cFile = curl_file_create($dest); else $cFile = '@' . realpath($dest); extra_info =&gt; 123456 是干什么用的? 此解决方案在 php 5.6 中停止工作,解决方案是将文件添加为:new CURLFile(realpath($fileName));

以上是关于如何通过 PHP 使用 curl 上传文件 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

PHP如何通过CURL上传文件

PHP 5.6 如何使用 CURL 上传文件

使用CURL上传文件

如何将 curl 上传进度发送到要显示的 ajax

使用PHP和cURL通过它们的API将文件上传到RapidShare

cURL如何上传文件?