--TEST-- Bug #75776 (Flushing streams with compression filter is broken) --EXTENSIONS-- zlib bz2 --FILE-- ['zlib.deflate', 'gzinflate'], 'bz2' => ['bzip2.compress', 'bzdecompress'] ]; foreach ($compression as $ext => [$filter, $function]) { $stream = fopen(__DIR__ . "/75776.$ext", 'w'); stream_filter_append($stream, $filter); fwrite($stream,"sdfgdfg"); fflush($stream); fclose($stream); $compressed = file_get_contents(__DIR__ . "/75776.$ext"); var_dump($function($compressed)); } ?> --EXPECT-- string(7) "sdfgdfg" string(7) "sdfgdfg" --CLEAN--