--- /dev/null
+--TEST--
+gzgetss — Get line from gz-file pointer and strip HTML tags - function
+--CREDITS--
+marcosptf - <marcosptf@yahoo.com.br>
+--SKIPIF--
+<?php
+
+<?php
+if(!extension_loaded("zlib")){die("skip - ZLIB extension not loaded");}
+?>
+--FILE--
+<?php
+$handle = gzopen(__DIR__ . '/gzgetss.gz', 'r');
+
+while (!gzeof($handle)){
+ $buffer = gzgetss($handle, 4096, "<code>");
+ print($buffer);
+}
+gzclose($handle);
+?>
+--EXPECT--
+<code>stringgzgetss(resource $zp, int $length [, string $allowable_tags ]);<code/>
\ No newline at end of file
--- /dev/null
+<div>
+ <p class="para rdfs-comment">
+ <code><span class="type">string</span><span class="methodname"><strong>gzgetss</strong></span>(resource $zp, int $length [, string $allowable_tags ]);<code/>
+ </p>
+</div>
\ No newline at end of file