a0736617a58b76db40456c0d88596c23cb35e66a
[m6w6/ext-http] / tests / send_data_007.phpt
1 --TEST--
2 http_send_data() NIL-NIL range
3 --SKIPIF--
4 <?php
5 include 'skip.inc';
6 checkcgi();
7 checkmin(5);
8 ?>
9 --ENV--
10 HTTP_RANGE=bytes=0-0
11 --FILE--
12 <?php
13 http_send_content_type('text/plain');
14 http_send_data("abc");
15 ?>
16 --EXPECTF--
17 Status: 206
18 X-Powered-By: PHP/%s
19 Content-Type: text/plain
20 Accept-Ranges: bytes
21 Content-Range: bytes 0-0/3
22 Content-Length: 1
23
24 a