- typo
[m6w6/ext-http] / tests / send_data_006.phpt
1 --TEST--
2 http_send_data() multiple ranges
3 --SKIPIF--
4 <?php
5 include 'skip.inc';
6 ?>
7 --ENV--
8 HTTP_RANGE=bytes=0-3, 4-5,9-11
9 --FILE--
10 <?php
11 http_send_content_type('text/plain');
12 http_send_data(str_repeat('123abc', 1000));
13 ?>
14 --EXPECTF--
15 Status: 206
16 X-Powered-By: PHP/%s
17 Accept-Ranges: bytes
18 Content-Type: multipart/byteranges; boundary=%d.%d
19
20
21 --%d.%d
22 Content-Type: text/plain
23 Content-Range: bytes 0-3/6000
24
25 123a
26 --%d.%d
27 Content-Type: text/plain
28 Content-Range: bytes 4-5/6000
29
30 bc
31 --%d.%d
32 Content-Type: text/plain
33 Content-Range: bytes 9-11/6000
34
35 abc
36 --%d.%d--