1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Fix incorrectly merged bug75535.phpt

Co-authored-by: Jakub Zelenka <bukka@php.net>
This commit is contained in:
Niels Dossche
2025-03-11 23:06:26 +01:00
parent a8d3a80067
commit 8156a89eff

View File

@@ -14,25 +14,14 @@ $responses = array(
['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
var_dump(http_get_last_response_headers());
var_dump(file_get_contents($uri));
var_dump($http_response_header);
var_dump(http_get_last_response_headers());
http_server_kill($pid);
?>
--EXPECT--
NULL
string(0) ""
array(1) {
[0]=>
string(15) "HTTP/1.0 200 Ok"
}
array(2) {
[0]=>
string(15) "HTTP/1.0 200 Ok"
[1]=>
string(14) "Content-Length"
}