--TEST-- zlib.inflate of gzip-encoded stream --SKIPIF-- --FILE-- 15+16)); echo "2\n"; echo fread($fp, 2000); fclose($fp); // auto-detect $fp = fopen(__DIR__ . '/test.txt.gz', 'r'); stream_filter_append($fp, 'zlib.inflate', STREAM_FILTER_READ, array('window' => 15+32)); echo "3\n"; echo fread($fp, 2000); fclose($fp); ?> --CLEAN-- --EXPECTF-- Notice: fread(): zlib: data error in %s on line %d 1 2 This is quite the thing ain't it 3 This is quite the thing ain't it