使用Guzzle PHP将文件以块的形式上传到URL端点

时间:2017-07-19 06:37:29

标签: php stream guzzle guzzle6 guzzlehttp

我想使用guzzle将文件以块的形式上传到URL端点。

我应该能够提供Content-Range和Content-Length标题。

使用php我知道我可以使用

拆分
define('CHUNK_SIZE', 1024*1024); // Size (in bytes) of chunk

function readfile_chunked($filename, $retbytes = TRUE) {
    $buffer = '';
    $cnt    = 0;
    $handle = fopen($filename, 'rb');

    if ($handle === false) {
        return false;
    }

    while (!feof($handle)) {
        $buffer = fread($handle, CHUNK_SIZE);
        echo $buffer;
        ob_flush();
        flush();

        if ($retbytes) {
            $cnt += strlen($buffer);
        }
    }

    $status = fclose($handle);

    if ($retbytes && $status) {
        return $cnt; // return num. bytes delivered like readfile() does.
    }

    return $status;
}

如果使用guzzle流,如何使用guzzle以块的形式发送文件?

2 个答案:

答案 0 :(得分:3)

此方法允许您使用guzzle流传输大文件:

use GuzzleHttp\Psr7;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;

$resource = fopen($pathname, 'r');
$stream = Psr7\stream_for($resource);

$client = new Client();
$request = new Request(
        'POST',
        $api,
        [],
        new Psr7\MultipartStream(
            [
                [
                    'name' => 'bigfile',
                    'contents' => $stream,
                ],
            ]
        )
);
$response = $client->send($request);

答案 1 :(得分:1)

只需使用multipart正文类型,因为它是described in the documentation。然后cURL在内部处理文件读取,您不需要自己实现chunked读取。此外,所有必需的标题都将由Guzzle配置。