$ _SERVER [‘HTTP_RANGE’] каждый раз возвращает Null?

В данном коде только еще условие выполняется каждый раз. Я использовал библиотеку pdf.js и пытался разбить PDF на куски. Я использую этот код на стороне сервера, но кажется, что только условие выполняется и, возможно, isset($_SERVER['HTTP_RANGE'] возвращается null, Таким образом, PDF-файл загружается с самого начала.

if(isset($_SERVER['HTTP_RANGE']))  {

$fp = @fopen($filepath, 'rb');
$size   = filesize($filepath); // File size
$length = $size;           // Content length
$start  = 0;               // Start byte
$end    = $size - 1;       // End byte
header("Accept-Ranges: 0-$length");
if (isset($_SERVER['HTTP_RANGE'])) {

$c_start = $start;
$c_end   = $end;
// Extract the range string
list(, $range) = explode('=', $_SERVER['HTTP_RANGE'], 2);
// Make sure the client hasn't sent us a multibyte range
if (strpos($range, ',') !== false) {

header('HTTP/1.1 416 Requested Range Not Satisfiable');
header("Content-Range: bytes $start-$end/$size");
// (?) Echo some info to the client?
exit;
}
if ($range == '-') {

// The n-number of the last bytes is requested
$c_start = $size - substr($range, 1);
}
else {

$range  = explode('-', $range);
$c_start = $range[0];
$c_end   = (isset($range[1]) && is_numeric($range[1])) ? $range[1] : $size;
}
$c_end = ($c_end > $end) ? $end : $c_end;
// Validate the requested range and return an error if it's not correct.
if ($c_start > $c_end || $c_start > $size - 1 || $c_end >= $size) {

header('HTTP/1.1 416 Requested Range Not Satisfiable');
header("Content-Range: bytes $start-$end/$size");
// (?) Echo some info to the client?
exit;
}
$start  = $c_start;
$end    = $c_end;
$length = $end - $start + 1; // Calculate new content length
fseek($fp, $start);
header('HTTP/1.1 206 Partial Content');
}
// Notify the client the byte range we'll be outputting
header("Content-Range: bytes $start-$end/$size");
header("Content-Length: $length");

// Start buffered download
$buffer = 1024 * 8;
while(!feof($fp) && ($p = ftell($fp)) <= $end) {

if ($p + $buffer > $end) {

// In case we're only outputtin a chunk, make sure we don't
// read past the length
$buffer = $end - $p + 1;
}
set_time_limit(0); // Reset time limit for big files
echo fread($fp, $buffer);
flush(); // Free up memory. Otherwise large files will trigger PHP's memory limit.
}

fclose($fp);

}
else {

header("Content-Length: ".filesize($filepath));
header("X-Sendfile: $filepath");
readfile($filepath);
}

0

Решение

Автор http://pdf.yt/ был достаточно любезен, чтобы опубликовать исходный код — старая версия которого была написана на PHP и работает на PDF.js. Увидеть https://github.com/joepie91/pdfy/blob/master/public_html/modules/download.php для полного решения. В основном это ваш код с правильными заголовками HTTP (например, «Accept-Ranges: bytes») и несколькими обходными путями.

1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]