Lines Matching defs:size
95 * @param int $size - size of the whole file
100 function http_rangeRequest($fh, $size, $mime)
111 $ranges[] = [0, $size, $size];
116 $ranges[] = [0, $size, $size];
125 if (!$end) $end = $size - 1;
126 if ($start > $end || $start > $size || $end > $size) {
158 echo "Content-Range: bytes $start-$end/$size" . HTTP_HEADER_LF;
163 header("Content-Range: bytes $start-$end/$size");