使用file_get_contents上传文件

时间:2010-10-23 12:38:13

标签: php file-upload file-get-contents

我意识到我可以很容易地使用CURL执行此操作,但我想知道是否可以将file_get_contents()与http流上下文一起用于将文件上载到远程Web服务器,如果是,如何?

2 个答案:

答案 0 :(得分:80)

首先,multipart Content-Type的第一条规则是定义一个边界,它将用作每个部分之间的分隔符(因为顾名思义,它可以有多个部分)。边界可以是内容正文中未包含的任何字符串。我通常会使用时间戳:

define('MULTIPART_BOUNDARY', '--------------------------'.microtime(true));

定义边界后,必须使用Content-Type标头发送它,告诉网络服务器预期的分隔符:

$header = 'Content-Type: multipart/form-data; boundary='.MULTIPART_BOUNDARY;

完成后,您必须构建一个与HTTP规范和您发送的标头相匹配的正确内容主体。如您所知,在从表单发布文件时,通常会有一个表单字段名称。我们将定义它:

// equivalent to <input type="file" name="uploaded_file"/>
define('FORM_FIELD', 'uploaded_file'); 

然后我们构建内容正文:

$filename = "/path/to/uploaded/file.zip";
$file_contents = file_get_contents($filename);    

$content =  "--".MULTIPART_BOUNDARY."\r\n".
            "Content-Disposition: form-data; name=\"".FORM_FIELD."\"; filename=\"".basename($filename)."\"\r\n".
            "Content-Type: application/zip\r\n\r\n".
            $file_contents."\r\n";

// add some POST fields to the request too: $_POST['foo'] = 'bar'
$content .= "--".MULTIPART_BOUNDARY."\r\n".
            "Content-Disposition: form-data; name=\"foo\"\r\n\r\n".
            "bar\r\n";

// signal end of request (note the trailing "--")
$content .= "--".MULTIPART_BOUNDARY."--\r\n";

正如您所看到的,我们发送了带有Content-Disposition处置的form-data标题,以及name参数(表单字段名称)和filename参数(原始文件名)。如果要正确填充Content-Type内容,请使用正确的MIME类型发送$_FILES[]['type']标头也很重要。

如果要上传多个文件,只需使用 $ content 位重复此过程,当然,每个文件都有不同的FORM_FIELD

现在,构建上下文:

$context = stream_context_create(array(
    'http' => array(
          'method' => 'POST',
          'header' => $header,
          'content' => $content,
    )
));

执行:

file_get_contents('http://url/to/upload/handler', false, $context);

注意:在发送二进制文件之前无需对其进行编码。 HTTP可以很好地处理二进制文件。

答案 1 :(得分:0)

或者也许你可以做:

$postdata = http_build_query(
array(
    'var1' => 'some content',
    'file' => file_get_contents('path/to/file')
)
);

$opts = array('http' =>
    array(
        'method'  => 'POST',
        'header'  => 'Content-Type: application/x-www-form-urlencoded',
        'content' => $postdata
    )
);

$context  = stream_context_create($opts);
$result = file_get_contents('http://example.com/submit.php', false, $context);

您将'/ path / to / file'更改为适当的路径