如何使用curl上传文件与php

我想知道如何使用cURL或PHP中的其他任何东西上传文件。 我在谷歌search了很多次,但没有结果。

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

代码:

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>'; } 

我想要代码发送到接收文件的文件。

使用:

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