summaryrefslogtreecommitdiff
path: root/ext/zlib/tests/bug61443.phpt
blob: 2659a0fc2299c7634afd1a910e69f4ce1a653525 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
bug #61443
--SKIPIF--
<?php
extension_loaded("zlib") or die("skip");
?>
--FILE--
<?php
ob_start(); echo "foo\n"; ob_get_clean();
if(!headers_sent()) ini_set('zlib.output_compression', true); echo "end\n";
?>
DONE
--EXPECTF--
end
DONE