File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / sapi / cgi / tests / bug61605.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 01:32:13 2013 UTC (10 years, 11 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17, HEAD
5.4.17

--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
)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>