2 http_send_data() multiple ranges
9 HTTP_RANGE=bytes=0-3, 4-5,9-11
12 $_SERVER['HTTP_RANGE'] = 'bytes=0-3, 4-5,9-11';
13 http_send_content_type('text/plain');
14 http_send_data(str_repeat('123abc', 1000));
20 Content-Type: multipart/byteranges; boundary=%d.%d
24 Content-Type: text/plain
25 Content-Range: bytes 0-3/6000
29 Content-Type: text/plain
30 Content-Range: bytes 4-5/6000
34 Content-Type: text/plain
35 Content-Range: bytes 9-11/6000