projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
- prepare for working static properties in PHP_5_1
[m6w6/ext-http]
/
tests
/
send_file_002.phpt
1
--TEST--
2
http_send_file() NUM-NUM range
3
--SKIPIF--
4
<?php
5
include 'skip.inc';
6
checkcgi();
7
?>
8
--ENV--
9
HTTP_RANGE=bytes=5-9
10
--FILE--
11
<?php
12
http_send_file('data.txt');
13
?>
14
--EXPECTF--
15
Status: 206
16
Content-type: text/html
17
X-Powered-By: PHP/%s
18
Accept-Ranges: bytes
19
Content-Range: bytes 5-9/1010
20
21
56789