summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/bug65391.phpt
blob: 3ba5350810f55ac1d4685002f89fc37ac26b83c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--TEST--
Bug #65391 (Unable to send vary header user-agent when ob_start('ob_gzhandler') is called)
--SKIPIF--
<?php
extension_loaded("zlib") or die("skip need zlib");
?>
--GET--
dummy=1
--FILE--
<?php
header("Vary: Cookie");
ob_start("ob_gzhandler");

// run-tests cannot test for a multiple Vary header
ob_flush();
print_r(headers_list());

?>
Done
--EXPECTF--
Array
(
    [0] => X-Powered-By: PHP/%s
    [1] => Vary: Cookie
    [2] => Vary: Accept-Encoding
)
Done