我想使用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以块的形式发送文件?
答案 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配置。