blob: dedd2c35502074a63936734abc1e63c8064bf5e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
--TEST--
$http_reponse_header (redirect + not found)
--SKIPIF--
<?php require 'server.inc'; http_server_skipif('tcp://127.0.0.1:22348'); ?>
--INI--
allow_url_fopen=1
--FILE--
<?php
require 'server.inc';
$responses = array(
"data://text/plain,HTTP/1.0 302 Found\r\n"
. "Some: Header\r\nLocation: http://127.0.0.1:22348/try-again\r\n\r\n",
"data://test/plain,HTTP/1.0 404 Not Found\r\nSome: Header\r\n\r\nBody",
);
$pid = http_server("tcp://127.0.0.1:22348", $responses, $output);
function test() {
$f = file_get_contents('http://127.0.0.1:22348/');
var_dump($f);
var_dump($http_response_header);
}
test();
http_server_kill($pid);
?>
--EXPECTF--
Warning: file_get_contents(http://127.0.0.1:22348/): failed to open stream: HTTP request failed! HTTP/1.0 404 Not Found%a
bool(false)
array(5) {
[0]=>
string(18) "HTTP/1.0 302 Found"
[1]=>
string(12) "Some: Header"
[2]=>
string(42) "Location: http://127.0.0.1:22348/try-again"
[3]=>
string(22) "HTTP/1.0 404 Not Found"
[4]=>
string(12) "Some: Header"
}
|