mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
16 lines
242 B
PHP
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
|