php man page for gzgetss

Query: gzgetss

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

GZGETSS(3)								 1								GZGETSS(3)

gzgetss - Get line from gz-file pointer and strip HTML tags

SYNOPSIS
string gzgetss (resource $zp, int $length, [string $allowable_tags])
DESCRIPTION
Identical to gzgets(3), except that gzgetss(3) attempts to strip any HTML and PHP tags from the text it reads.
PARAMETERS
o $zp - The gz-file pointer. It must be valid, and must point to a file successfully opened by gzopen(3). o $length - The length of data to get. o $allowable_tags - You can use this optional parameter to specify tags which should not be stripped.
RETURN VALUES
The uncompressed and stripped string, or FALSE on error.
EXAMPLES
Example #1 gzgetss(3) example <?php $handle = gzopen('somefile.gz', 'r'); while (!gzeof($handle)) { $buffer = gzgetss($handle, 4096); echo $buffer; } gzclose($handle); ?>
SEE ALSO
gzopen(3), gzgets(3), strip_tags(3). PHP Documentation Group GZGETSS(3)
Related Man Pages
fgets(3) - php
fgetss(3) - php
gzgetss(3) - php
gzseek(3) - php
gzwrite(3) - php
Similar Topics in the Unix Linux Community
unsing sed to strip html tags - help
include NULLs in line length check
Finding a string inside A Tag
Search and filter between two files
Perl: Question about stripping tags