mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
- Use INI sections - Use CGI sections - Move data into a subfolder - Remove ZPP tests - Fix various bugs within tests - Simplify some Found while working on #18879
21 lines
263 B
PHP
21 lines
263 B
PHP
--TEST--
|
|
ob_gzhandler
|
|
--EXTENSIONS--
|
|
zlib
|
|
--CGI-
|
|
--INI--
|
|
zlib.output_compression=0
|
|
--ENV--
|
|
HTTP_ACCEPT_ENCODING=gzip
|
|
--POST--
|
|
dummy=42
|
|
--FILE--
|
|
<?php
|
|
ob_start("ob_gzhandler");
|
|
ini_set("zlib.output_compression", 0);
|
|
echo "hi\n";
|
|
?>
|
|
--EXPECT--
|
|
hi
|
|
--EXPECTHEADERS--
|