mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
This is a mix of more automated and manual migration. It should remove all applicable extension_loaded() checks outside of skipif.inc files.
14 lines
201 B
PHP
14 lines
201 B
PHP
--TEST--
|
|
bug #61443
|
|
--EXTENSIONS--
|
|
zlib
|
|
--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
|