1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/zlib/tests/bug61443.phpt
2018-10-14 12:07:20 -03:00

16 lines
242 B
PHP

--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
--EXPECT--
end
DONE