如何使用curl和php上传文件


78

我想知道如何使用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>';
}

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


5
不带“ ftp”,我想在$ _FILES ['userfile']中发送带有curl的文件
Hadidi44 2013年

嗯...现在呢?您想寄到哪里?您的目标系统是什么?
Till Helge 2013年

到php文件(有问题的源代码)-目标系统是linux
Hadidi44

Answers:


150

使用:

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);


8
也许是使用curl内置功能的更好方法:php.net/manual/es/function.curl-file-create.php。当然,您可以使用POSTFIELDS的方式,并在前面填充值@。无论如何,从博客的自定义卷曲用法中复制了拷贝。正确的答案是说@char将其定义为文件而不是var。$ post将包含@filename.jpg示例。
m3nda

2
@ erm3nda仅限PHP 5.5+。
杰里米·洛根

9
@fiXedd im当前使用php 5.6,并且curl_file_create是必需的(karthik提供的解决方案不起作用)。因此,代码应升级为以下内容:if function_exists('curl_file_create')) { $cFile = curl_file_create($dest); } else { $cFile = '@' . realpath($dest); }
Marek Roj 2014年

2
有什么extra_info => 123456用?
亚伦·吉利恩

1
该解决方案在php 5.6中停止工作,解决方案是将文件添加为:new CURLFile(realpath($ fileName));
米哈尔弗拉斯
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.