我有存储在CDN上的文件,可供下载。文件最大可达100 MB,因此我使用简单的分块方法(如下)。
下载有效,但有些文件(主要是PDF-s)最终被破坏,无法打开。
任何人都可以在代码中指出缺陷或陷阱吗?
我能想到的一件事是标题不会以某种方式及时发送。另一个原因是某些文件没有保存在UTF-8中,这可能会导致完全读取文件时出现问题。我被卡住了。
下载逻辑(使用stream()):
$url = 'http://example.com/files/example.pdf';
$headers = array(
'Pragma' => 'public',
'Expires' => '0',
'Content-Transfer-Encoding' => 'binary',
'Cache-Control' => 'must-revalidate, post-check=0, pre-check=0',
'Content-Type' => 'application/octet-stream',
'Content-Disposition' => 'attachment; filename="example.pdf"'
);
return response()->stream(function() use ($url) {
$this->readfileChunked($url);
},200, $headers);
分块:
/**
* Serves the given file in chunks.
* Source: http://cn2.php.net/manual/en/function.readfile.php#52598
*
* @param $filename
* @param bool $retbytes
*
* @return bool|int
*/
public function readfileChunked($filename, $retbytes = true) {
$chunkSize = 1024 * 1024; // Size (in bytes) of tiles chunk
$cnt = 0;
$handle = fopen($filename, 'rb');
if ($handle === false) {
return false;
}
while (!feof($handle)) {
$buffer = fread($handle, $chunkSize);
echo $buffer;
ob_flush();
flush();
if ($retbytes) {
$cnt += strlen($buffer);
}
}
$status = fclose($handle);
if ($retbytes && $status) {
return $cnt; // return number of bytes delivered like readfile() does
}
return $status;
}
答案 0 :(得分:0)
您是否尝试过使用:
return response()->file($url, $headers);
这会导致像stream方法一样损坏文件吗?