mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_the_http_response_header_predefined_variable
59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
--TEST--
|
|
$http_reponse_header (redirect + not found)
|
|
--SKIPIF--
|
|
<?php require 'server.inc'; http_server_skipif(); ?>
|
|
--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: /try-again\r\n\r\n",
|
|
"data://test/plain,HTTP/1.0 404 Not Found\r\nSome: Header\r\n\r\nBody",
|
|
);
|
|
|
|
['pid' => $pid, 'uri' => $uri] = http_server($responses, $output);
|
|
|
|
var_dump(http_get_last_response_headers());
|
|
|
|
$f = file_get_contents($uri);
|
|
var_dump($f);
|
|
var_dump($http_response_header);
|
|
var_dump(http_get_last_response_headers());
|
|
|
|
http_server_kill($pid);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Deprecated: The predefined locally scoped $http_response_header variable is deprecated, call http_get_last_response_headers() instead in %s on line 16
|
|
NULL
|
|
|
|
Warning: file_get_contents(http://%s:%d): 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(20) "Location: /try-again"
|
|
[3]=>
|
|
string(22) "HTTP/1.0 404 Not Found"
|
|
[4]=>
|
|
string(12) "Some: Header"
|
|
}
|
|
array(5) {
|
|
[0]=>
|
|
string(18) "HTTP/1.0 302 Found"
|
|
[1]=>
|
|
string(12) "Some: Header"
|
|
[2]=>
|
|
string(20) "Location: /try-again"
|
|
[3]=>
|
|
string(22) "HTTP/1.0 404 Not Found"
|
|
[4]=>
|
|
string(12) "Some: Header"
|
|
}
|