summaryrefslogtreecommitdiff
path: root/ext/standard/tests/general_functions/header_redirection_006.phpt
blob: 5fb52096ce18b4f113527dc7b00e163d6a4881df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Location: headers do not override the 300 Multiple Choices response code
--CGI--
--FILE--
<?php
header('HTTP/1.1 300 Multiple Choices');
header('Location: http://example.com/');
?>
--EXPECTHEADERS--
Status: 300 Multiple Choices
Location: http://example.com/
--EXPECT--