在 PHP 中使用 cURL 发布文件字符串? [英] POST a file string using cURL in PHP?

查看:18
本文介绍了在 PHP 中使用 cURL 发布文件字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道当文件只是一个字符串时是否可以发布文件 - 连同其他表单数据?

I was wondering if it is possible to post a file - along with other form data - when the file is just a string?

我知道您可以通过在文件路径前加上@"前缀来发布文件系统上已经存在的文件.

I know that you can post a file that is already on the filesystem by prefixing the filepath with "@".

但是我想绕过创建临时文件并仅将文件作为字符串发送,但我不确定如何在 PHP 中使用 cURL 构造请求.

However I'd like to bypass creating a temporary file and send just the file as a string, but I am unsure how to construct the request using cURL in PHP.

干杯

    $postFields = array(
        'otherFields'   => 'Yes'
        ,'filename'     => 'my_file.csv'
        ,'data'         => 'comma seperated content'
    );

    $options = array(
        CURLOPT_RETURNTRANSFER  => true
        ,CURLOPT_SSL_VERIFYPEER => false
        ,CURLOPT_SSL_VERIFYHOST => 1
        ,CURLOPT_POSTFIELDS     => $postFields
        ,CURLOPT_HTTPHEADER     => array(
            'Content-type: multipart/form-data'
        )
    );

推荐答案

应该可以:这里有一个表单,通过浏览器发布(省略了无关字段):

Should be possible: here's a form, posted through a browser (irrelevant fields omitted):

POST http://host.example.com/somewhere HTTP/1.1
Content-Type: multipart/form-data; boundary=---------------------------7da16b2e4026c
Content-Length: 105732

-----------------------------7da16b2e4026c
Content-Disposition: form-data; name="NewFile"; filename="test.jpg"
Content-Type: image/jpeg

(...raw JPEG data here...)
-----------------------------7da16b2e4026c
Content-Disposition: form-data; name="otherformfield"

content of otherformfield is this text
-----------------------------7da16b2e4026c--

因此,如果我们自己构建 POST 主体并设置一两个额外的标头,我们应该能够模拟这一点:

So, if we build the POST body ourselves and set an extra header or two, we should be able to simulate this:

// form field separator
$delimiter = '-------------' . uniqid();
// file upload fields: name => array(type=>'mime/type',content=>'raw data')
$fileFields = array(
    'file1' => array(
        'type' => 'text/plain',
        'content' => '...your raw file content goes here...'
    ), /* ... */
);
// all other fields (not file upload): name => value
$postFields = array(
    'otherformfield'   => 'content of otherformfield is this text',
    /* ... */
);

$data = '';

// populate normal fields first (simpler)
foreach ($postFields as $name => $content) {
   $data .= "--" . $delimiter . "
";
    $data .= 'Content-Disposition: form-data; name="' . $name . '"';
    // note: double endline
    $data .= "

";
}
// populate file fields
foreach ($fileFields as $name => $file) {
    $data .= "--" . $delimiter . "
";
    // "filename" attribute is not essential; server-side scripts may use it
    $data .= 'Content-Disposition: form-data; name="' . $name . '";' .
             ' filename="' . $name . '"' . "
";
    // this is, again, informative only; good practice to include though
    $data .= 'Content-Type: ' . $file['type'] . "
";
    // this endline must be here to indicate end of headers
    $data .= "
";
    // the file itself (note: there's no encoding of any kind)
    $data .= $file['content'] . "
";
}
// last delimiter
$data .= "--" . $delimiter . "--
";

$handle = curl_init($url);
curl_setopt($handle, CURLOPT_POST, true);
curl_setopt($handle, CURLOPT_HTTPHEADER , array(
    'Content-Type: multipart/form-data; boundary=' . $delimiter,
    'Content-Length: ' . strlen($data)));  
curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
curl_exec($handle);

这样,我们自己承担了所有繁重的工作,并且相信 cURL 不会破坏它.

This way, we're doing all the heavy lifting ourselves, and trusting cURL not to mangle it.

这篇关于在 PHP 中使用 cURL 发布文件字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆