Update View.php

This commit is contained in:
Scott Dutton 2020-04-15 19:10:06 +01:00 committed by GitHub
parent 75b99e85ff
commit 65e134c13a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -423,7 +423,7 @@ class View {
@ob_end_clean(); @ob_end_clean();
$handle = $this->fopen($path, 'rb'); $handle = $this->fopen($path, 'rb');
if ($handle) { if ($handle) {
$chunkSize = 512000; // 500 kB chunks $chunkSize = 524288; // 512 kB chunks
while (!feof($handle)) { while (!feof($handle)) {
echo fread($handle, $chunkSize); echo fread($handle, $chunkSize);
flush(); flush();
@ -447,7 +447,7 @@ class View {
@ob_end_clean(); @ob_end_clean();
$handle = $this->fopen($path, 'rb'); $handle = $this->fopen($path, 'rb');
if ($handle) { if ($handle) {
$chunkSize = 512000; // 500 kB chunks $chunkSize = 524288; // 512 kB chunks
$startReading = true; $startReading = true;
if ($from !== 0 && $from !== '0' && fseek($handle, $from) !== 0) { if ($from !== 0 && $from !== '0' && fseek($handle, $from) !== 0) {