-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/sapi/cgi/tests/
File Upload :
Current File : //usr/src/php/sapi/cgi/tests/bug61605.phpt

--TEST--
Bug #61605 (header_remove() does not remove all headers)
--SKIPIF--
<?php include "skipif.inc"; ?>
--GET--
foo=bar
--FILE--
<?php
header("A: first");
header("A: second", TRUE);
$headers1 = headers_list();
header("A: third", FALSE);
$headers2 = headers_list();
header_remove("A");
$headers3 = headers_list();
print_r($headers1);
print_r($headers2);
print_r($headers3);
--EXPECTF--
Array
(
    [0] => X-Powered-By: %s
    [1] => A: second
)
Array
(
    [0] => X-Powered-By: %s
    [1] => A: second
    [2] => A: third
)
Array
(
    [0] => X-Powered-By: %s
)

Copyright © 2017 || Recoded By Mr.Bumblebee